/**
 * Javascript - jQuery enabled
 * 
 * @package WPFramework
 * @subpackage Media
 */


jQuery(document).ready(function($) {


	/* Reduce opacity when mouse hover portfolio images */
	$(".fade a img").fadeTo(0, 1.0); // This sets the opacity to 100% when the page loads

	$(".fade a img").hover(function(){
		$(this).stop().fadeTo("slow", .6); // This sets the opacity to 60% on hover
	},function(){
		$(this).stop().fadeTo("slow", 1.0); // This sets the opacity back to 100% on mouseout
	});
	
});