$jquery(document).ready(function() {


			if(($jquery(window).width())<1276)
			{
						$jquery('#manatee').animate({left: '-80'},'slow');
			}
			$jquery('#manatee').click(function(){
					$jquery("html, body").animate({scrollTop :$jquery(this).css('marginTop') },'slow');
					
				
					if(($jquery(window).width())>1276)
					{
						//console.log($jquery(window).width());
						$jquery('#manatee').animate({left: '16'}, 'slow');
					}
			});
			$jquery(window).resize(function(){
				
					if(($jquery(window).width())<1276 && $jquery('#manatee').css('left') != '-80px' )
					{
						//console.log("inside resize");
						$jquery('#manatee').animate({left: '-80'},'slow');
					}
					

			});
				
				

});

