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

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

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



$(document).ready(function() {

	$('.pkg dl').corner('10px');

	$('.pkg dl').hover(
		function() {
			//$(this).addClass('hover');
			$(this).find('dt a').addClass('hover');
			$(this).find('dt a span').addClass('hover');
			$(this).find('dd').addClass('hover');
		},
		function() {
			//$(this).removeClass('hover');
			$(this).find('dt a').removeClass('hover');
			$(this).find('dt a span').removeClass('hover');
			$(this).find('dd').removeClass('hover');
	});

	$('.pkg dl').click(function(){
		window.location=$(this).find('a').attr('href');return false;
		window.location=$(this.href, '_blank').find('a.blank').attr('href').focus();return false;
	});

});

