$(document).ready(function(){
						   
	$("#face, #skin, #body, #breast").hoverIntent(moveUp,moveDown);
	
	function moveUp(){ $(this).animate({marginTop: "15px"}, 600, "easeOutQuart");}
	function moveDown(){ $(this).animate({marginTop: "30px"}, 1200, "easeOutQuart");}
	
	$("#contactbox .logo").hover(
		function()
        {
            var image = $(this).attr("data-image");
			$('img',this).attr("src", "/img/logo_"+image+"_animated.gif");
        },
        function()
        {
            var image = $(this).attr("data-image");
			$('img',this).attr("src", "/img/logo_"+image+"_static.gif");
        }                         
    ); 
	
});
