// JavaScript Document

var navTitleArr = ["HOME", "PORTFOLIO", "WEB 3.0", "CONTACT", "TAGS"];
var navIdArr = ["#top_div", "#site_portfolio", "#header_web3", "#header_contact", "#tag_game"];
var setTimeOutId;

function thisMovie(movieName)
{
	if (navigator.appName.indexOf("Microsoft") != -1)
	{
		return window[movieName];
	}
	else
	{
		return document[movieName];
	}
}

function getNavArray(){
	returnNavArray(navTitleArr);
};

function returnNavArray(arr){
    thisMovie("nav").returnNavArray(arr);
};

function openDiv() {
    clearTimeout(setTimeOutId);
    $('#main_content_left').css({'z-index':'9999'});
    $('#site_portfolio').css({'z-index':'1'});


    // $('#main_content_left').css({'width':'272px'});
    // $('#main_content_left').css({'height':'265px'});

};

function closeDiv() {
    clearTimeout(setTimeOutId);
    // 
    //     $('#main_content_left').css({'width':'22px'});
    //     $('#main_content_left').css({'height':'121px'});
    // 
    setTimeOutId = setTimeout('hideDiv();',500);
};

function hideDiv(){
    $('#site_portfolio').css({'z-index':9999});
    $('#main_content_left').css({'z-index':1});
}

function switchSection(id) {	
	pageAnchorId = navIdArr[id];
	var browser = jQuery.browser;
	if(browser.msie && browser.version < 7) {
		// window.location = pageAnchorId;
	} else {
		$.scrollTo(pageAnchorId, 750, {easing:'easeInOutExpo', onAfter: updateUrl});
	}
};

function updateUrl() {
	//window.location = pageAnchorId;
};