$(document).ready(function(){
	
	$('.home_image .label').css('opacity',0);
	$('.home_image a .image').css('opacity',0.5);
	
	
	$('.home_image').hover(
	function(){
		$(this).children('a').children('.image').fadeTo('fast',1);
		$(this).children('.label').fadeTo('fast',0.85);	
	},
	function(){
		$(this).children('a').children('.image').fadeTo('fast',0.5);
		$(this).children('.label').fadeTo('fast',0);			
	});
});
