$(function() {
     // 特定のタブを開いて遷移
    $(window).load(function(){
    var hash = location.hash;
    if (hash){
        hash = (hash.match(/^#tab\d+$/) || [])[0];
        var tabname = hash.slice(4);
        var tabname = tabname - 1;
        var tabbar = tabname;
        $(".content_wrap").addClass('disnon');
        $(".content_wrap").eq(tabname).removeClass('disnon');
        $("#tab li").removeClass('select');
        $("#tab li").eq(tabbar).addClass('select');
    } else {
        $("#tab li").eq(0).addClass('select');
        $(".content_wrap").eq(0).removeClass('disnon');
    }
    }); 
    // タブメニュー
    $("#tab li").click(function() {
        var num = $("#tab li").index(this);
        $(".content_wrap").addClass('disnon');
        $(".content_wrap").eq(num).removeClass('disnon');
        $("#tab li").removeClass('select');
        $(this).addClass('select');
    });
});

// フルスクリーン
function fullscreen(url) {
	var winX = screen.availWidth - 10;
	var winY = screen.availHeight - 30;
	NewWindow=window.open(url,"brangista", "width=" + winX + ",height=" + winY + "scrollbars=no,status=no,menubar=no,toolbar=no,resizable=no,left=0,top=0");
	NewWindow.focus();
}
