$(document).ready(function() {
	$('#pages_products div.a').removeClass('display_none');
	$('#pages_products h4.b').addClass('display_none');
	$('#pages_products').hover(function() {
		$(this).find('div.a').fadeTo('fast', 0.25);
		$(this).find('h4.b').fadeIn('fast');
	}, function() {
		$(this).find('h4.b').fadeOut('fast');
		$(this).find('div.a').fadeTo('fast', 1);
	});
});
