
$(document).ready(function(){
	
	$(".reg").css("opacity","1");

	$(".reg").hover(function () {
		$(this).stop().animate({opacity: 0}, 'slow');
	},function () {
		$(this).stop().animate({opacity: 1}, 'slow');
	});

});



