$(document).ready(function(){ 
    
    var animeSpeed = 300;
	
	$("a.overFade").find("img").css({float:"left", border:"0px"});
	$("a.overFade").find("img").next().css({position:"relative"});
    
    $("a.overFade")
	.hover(
        function(){
			
			var imgWidth = $(this).find("img").attr("width")

            $(this).find("img").next()
			.css({marginLeft: - imgWidth})
			.stop(true,true)
			.fadeIn(animeSpeed);
			
        }, function(){
			
            $(this).find("img").next().fadeOut(animeSpeed);
			
        }
    );


$.smoothAnchors(700, "swing", false);

  
});
