/*******************************************************************************
//HOODTIMEZ-webpage-javascript
 *******************************************************************************/

/*IEホバー時の画像読み込み防止
******************************************************************************/
try { 
    document.execCommand('BackgroundImageCache', false, true); 
} catch(e) {} 



/*アコーディオンメニュー
******************************************************************************/
var j$ = jQuery;

	j$(function(){
		j$(".accn > li > a").each(function(index){
			var $this = j$(this);

			if(index > -1){$this.next().hide();}

			$this.click(function(){
				var params = {height:"toggle", opacity:"toggle"}; 
				j$(this).next().animate(params).parent().siblings() 
				.children("ul:visible").animate(params); 
				return false;
			});
		});
});

/*テーブル行リンク
******************************************************************************/
$(function(){
  $(".gamelist td:not(td.imgLink)").click(function () {
    var id = $(this).parent().attr("id");
    location.href = id;
  });
});


