// JavaScript Document // Jquery


// hover menu
$(document).ready(function(){
	$(".menuitem").hover(function() {
		$(this).animate({"opacity": "0"}, "slow");
		
		
	},
	function() {
		$(this).animate({"opacity": "1"}, "slow");
		
	});
});




















