/*
 * Trust Art Home Page
 *
 * Copyright (c) 2009 Wirepoint Media, LLC (www.wirepointmedia.com)
 *
 * @Author: Chris Cox <chris.cox@wirepointmedia.com> 
 * @Date: 05-07-09
 * @version: 1.0 REV. 05-07-09
 */
 
    
$(function(){
        
    //Home page hover
	$(".container").hover(
		function(){            
            $(this).find(".project-image-hover").fadeIn("normal");            
		},
		function() {
            $(this).find(".project-image-hover").fadeOut("fast");
		}
	);  
    
    $(".container").click(function(){
        window.location = $(this).find("a").attr("href");        
    });
    

});