jQuery(function(){
	var myOp = 1;
	
	jQuery(window).load(function(){		
		
		// MouseOver Events
		
		jQuery('.box-inner').hover(function(){
			jQuery('img', this).fadeTo("fast", 0.70).addClass('box-hover');
			},
			function(){
			jQuery('img', this).fadeTo("fast", myOp).removeClass('box-hover');
		});
		
	});
});


