 
$(function(){
	$('#fade a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -50px)"}, {duration:500});
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500});
		})
		
	$('.thumb_fade')
		.css( {borderWidth : "5px"} )
		.mouseover(function(){
        $(this).stop().animate({borderWidth : "8px"},100,"swing");}
		)
		.mouseout(function(){
        $(this).stop().animate({borderWidth : "5px"},100,"swing");}
		)
});

