// JavaScript Document
 $(document).ready(function() {
	$('#footer, .bottom_menu').fadeTo(700, 0.5);
	
	$('#footer, .bottom_menu').hover(function() {
								
				 
				
				
	$('#footer, .bottom_menu').fadeTo(200,1.0);
						   }, function() {
							$('#footer, .bottom_menu').fadeTo(700, 0.5);
						   });
	
	
	 

							});
 
