$(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,#globalmenu ul li a img,#ninsyo a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});

	/* slide */
	try{
	$('#slideshow p').crossSlide({
	  sleep: 3,  //sec
	  fade: 3    //sec
	}, [
  	{ src: './img/slide_01.jpg' },
  	{ src: './img/slide_02.jpg' },
	{ src: './img/slide_03.jpg' },
	{ src: './img/slide_04.jpg' }
	]);
	}catch(error){
	}

});
