// JavaScript Document

$(document).ready(function(){

	$('.qhover').hover(function(){
		$(this).children('img').stop(true, true).animate({'opacity': 0});
	   }, function(){
		$(this).children('img').stop(true, true).animate({'opacity': 1});
	   });

});
