// JavaScript Document

jQuery(function($) {

	$(".over").css({opacity:"0.01"});
	$(".over").hover(
		function(){
			$(this).stop().animate({opacity:"1.00"},200)
		},
		function(){
			$(this).stop().animate({opacity:"0.01"},800)
		})
});
