function gotoPage (page){
	switch(page)
	{
		case 'mc_home' : 	
			//$("#theSlider").css("scrollLeft","0")
			$("#wrapper").animate({scrollLeft:"0"},1000)
			break;
		case 'mc_boat' : 
			//$("#theSlider").css("margin-left","-1024px")
			$("#wrapper").animate({scrollLeft:"1024px"},1000)
			break;
		case 'mc_seahorse' : 
			//$("#theSlider").css("margin-left","-2048px")
			$("#wrapper").animate({scrollLeft:"2048px"},1000)
			break;
		case 'mc_cat' : 
			//$("#theSlider").css("margin-left","-3072px")
			$("#wrapper").animate({scrollLeft:"3072px"},1000)
			break;
			
		case 'mc_octopus' : 
			//$("#theSlider").css("margin-left","-3072px")
			$("#wrapper").animate({scrollLeft:"4096px"},1000)
			break;
	}
}

$(document).ready(
	function()
	{
		//alert(window.innerHeight)
		$("#wrapper").css("height",window.innerHeight-150+"px")
		//$("#wrapper").animate({scrollLeft:"2048px"},1000)
	}
)
window.onresize = resizeFunction;

function resizeFunction(){$("#wrapper").css("height",window.innerHeight-150+"px")}