
$(document).ready(function() {

/* home.html ****************************************************************/
	$("div.portfolio_section img.hovered").hide();
	$("div.portfolio_section").hover(function() {
		$(this).find('img').fadeIn(200);
		$(this).find('h3').css({'color': '#999'});;
	}, function() {
		$(this).find('img.hovered').fadeOut(200);
		$(this).find('h3').css({'color': '#000'});
	});
	
/*	$("div.portfolio_section").click(function(){
    	window.location=$(this).find("a").attr("href");
    	return false;
	});
*/
	
}); // End jQuery
