// ONHOVER FADE
$(document).ready(function(){
	$(".fademe").fadeTo("fast", 1.0);
	
	$(".fademe").hover(function(){
		$(this).children('img').fadeTo("fast", 0.5); 
		$(this).children('.img').fadeTo("fast", 0.5); 
	},function(){
		$(this).children('img').fadeTo("fast", 1.0);
		$(this).children('.img').fadeTo("fast", 1.0);
	});
});

// FRONT INFO
/*$(document).ready(function() {

	$('#front_info').fadeIn('slow');

	
				   
						   
	$('#front_info').click(function() {
	  $('#front_info').fadeOut('normal');
	});
});*/
