$(function(){
	
	/**
	 * 12球団ボタンのロールオーバー
	 */
	$("#teamMenu li,#mainMenu li,.btn img").hover(
		function(){
			$(this).stop();
			$(this).animate( { "opacity":0.5 }, 100, "linear" );
		},
		function() {
			$(this).stop();
			$(this).animate( { "opacity":1 }, 500, "linear" );
		}
	);
	
	$(".popup").click( function(){
		
		var ary = $(this).attr("class").split(" ");
		var url = $(this).attr("href");
		var w = ary[1];
		var h = ary[2];
		
		window.open( url, "popupWindow", "width="+w+",height="+h+",scrollbars=yes" );
		
		return false;
		
	})
	
	
	
});

