$(document).ready(function(){
	$("#button").live("click",function(){
		if($("#gotouchi-select option:selected").val() != ""){
			location.href = $("#gotouchi-select option:selected").val();
		}
		return false;
	});
	
	$("a[href='#header']").live("click",function(){
		$("html,body").animate({ 
			scrollTop: 0
		}, 1000);
		return false;
	});
});
