





$(document).ready(function(){

	











$(function()
		   
		 {
			
		
		
		
		$('#images img').hover(function() {
					$(this).stop().animate({"opacity" : 1 });						
				}, 
				
				function() {
					$(this).stop().animate({"opacity" : .6 });					
		});
			
});


$(function()
		   
		 {
			 $('#mini img').animate( {
				"opacity" : .8
			 }, 0);
		
		$('#mini img').hover(function() {
					$(this).stop().animate({"opacity" : 1 });						
				}, 
				
				function() {
					$(this).stop().animate({"opacity" : .8 });					
		});
			
});


$(function()
		   
		 {
			 $('.menuhover img').animate( {
				"opacity" : 0
			 }, 0);
		
		$('.menuhover img').hover(function() {
					$(this).stop().animate({"opacity" : 1 }, 200);						
				}, 
				
				function() {
					$(this).stop().animate({"opacity" : 0 }, 800);					
		});
			
});



});

