// JavaScript Document

$(document).ready(function(){	   						   
	
	$('.jq-fade').hover(
		function() {
			$(this).find('a img').animate({opacity : '0.0'},300); 
		},
	function() {
			$(this).find('a img').animate({opacity : '1.0'},300);
		}
	);
}); 
