$(function() {
//　商品一覧 3列表示
	$("div.listarea").css({
		float : "left",
		marginRight : "15px"
	});
	$("div.listarea:nth-child(3n)").css({
		float : "right",
		marginRight : "0"
	});
	$("div.listarea").tile(3);
//	商品一覧 クリックエリア拡大
	$('div.listrightblock').css("cursor","pointer");
	$('div.listrightblock h3 a').each(function(){
		var Href = $(this).attr('href');
		$(this).parent().parent().click(function() {
			window.open(Href,'_self');
			return false;
		});
	});
//    #headline
	$('#slideshow').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 4500,
		pause: true,
		pager:  '#slidenav',
		next:   '#next', 
		prev:   '#prev',
		pagerAnchorBuilder: function(idx, slide) {
		return '#slidenav a:eq(' + idx + ')';}
	});
});

