
/*----------------------------------------------

	Theme ESTIC CORPORATION.
	http://www.estic.co.jp/
	Description:Common Style Sheet　5-7-2009 (mm-dd-yyyy)
	Version:ver. 1.0

----------------------------------------------*/



$(document).ready(function() {

	/*$('#productsBlock dd li a').append('<em></em>');
	
	$('#productsBlock dd li a').hover(function() {
		$(this).find('em').animate({opacity: 'show', top: '-75'}, 'slow');
		var hoverText = $(this).attr("title');
		$(this).find('em').text(hoverText);
	},function() {
		$(this).find('em').animate({opacity: 'hide', top: '-75'}, 'fast');
	});*/

	$('#productsBlock dd li a').hover(function() {
		$(this).next('em').animate({opacity: 'show', top: '-75'}, 'slow');
	}, function() {
		$(this).next('em').animate({opacity: 'hide', top: '-85'}, 'fast');
	});

});

