$(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 rePadding = Math.floor((boxY - y) / 2);
				var reHeight = boxY - rePadding;
				$(this).css({paddingTop:rePadding+'px',height:reHeight+'px'});
			}
		});
	}
	*/
	
	/* クロスブラウザなゼブラテーブル 
	$("#news dl:nth-child(even)").css("background", "#F0EFF1");
	*/
	
	/* ウィンク効果 */
	$("#sidecolumn a img,.gotocontact a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});

});

