jQuery(document).ready(function() {
	
	
/*	-------------------- Logo hover ---------------------  */
	
	jQuery('#logo-icon').hover( function () {
		
		jQuery(this).find('img').stop().animate({opacity : 1}, 200);
		
	}, function () {
	
		jQuery(this).find('img').stop().animate({opacity : 0}, 200); 
		
	});
	
	
	
/*	-------------------- Logo hover ---------------------  */

});


