$(function(){

	var ua = navigator.userAgent;

 	if(ua.indexOf('IE 6') > -1 || ua.indexOf('IE 7') > -1){
		//サムネールを内包する、.table-cell内で、display:table-cell;vertical-align:middle;のように表示する
		$('.table-cell').each(function(){
			var x = $('img',this).width();
			var y = $('img',this).height();
			if(x > y){
				$(this).css({display:'block'});
				var boxY = $(this).height();
				var paddingTop = Math.floor((boxY - y) / 2);
				var height = boxY - paddingTop;
			}
			$(this).css({paddingTop:paddingTop+'px',height:height+'px'});
		});
	}
	
	/* クロスブラウザなゼブラテーブル */
	$("#news dl:nth-child(even)").css("background", "#F8FCD6");

	/* ウィンク効果 */
	$("#side_contact a img,p.buying_btn a img,#side_contact a img,#sitanobuying_btn a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("normal", 1.0);
	});

	try{
	$('div#slideshow').slideShow(); 
	}catch(error){
	}

});
