$(document).ready(function() {
    $('#homepage_slider').nivoSlider({ pauseTime:5000, pauseOnHover:false });

    $(".grey_hover").hover(function() {
        //alert("/img/homepage/"+$(this).attr("id")+".jpg");
        $(this).find(".grey").stop().fadeTo(200, 0 , function() {
			//$(this).hide() //Hide the image after fade
		});
    },function() {
        $(this).find(".grey").stop().fadeTo(200, 1).show();
    
    });
});
