jQuery(document).ready(function () 
{
// Hover effect
jQuery(".featured_work_item").hover(function()
{
	// Reset the state of all items in the grid
	jQuery("ul .work_grid").css("opacity","1");
	
	// Fade the featured_work_item element out
	// Added .stop() to animation to stop jQuery queuing animations
	jQuery(this).stop().fadeTo(350, 0); 
	
	// Change it z-index so it says hidden
	jQuery(".featured_work_item").css("z-index","-1");
	
},function()
{
	// When the mouse leaves the featured_work_item element, fade the opacity back in
	jQuery(this).stop().fadeTo(350, 1); 
		
});  
          
});
