// JavaScript Document

$(document).ready(function(){
	
	$('.Hover').mouseenter(function(){
		$(this).animate( { opacity : 0.5 , duration : 200} );													 
	});
	$('.Hover').mouseleave(function(){
		$(this).animate( { opacity : 1 , duration : 200} );													 
	});
	
	
	
});