$().ready(function() {
	$("#flashstart").flash({swf: 'flash/fujislide.swf', height: 311, width: 856, wmode: 'opaque'});    
	$("#bottomstartbox li").mouseover(function(){swapStartInfo($(this).attr("id"));});
	$("#bottomstartbox li").mouseout(function(){closeStartInfo();});
});


function closeStartInfo() {
	$("#bottomstart div.bottomstartright").each(function(){
		$(this).css("display","none");
	});
	$("#fs0").css("display","block");
}

function swapStartInfo(currEl) {
	var showEl = currEl.substring(2);
	$("#bottomstart div.bottomstartright").each(function(){
		$(this).css("display","none");
	});
	$("#fs"+showEl).css("display","block");
}


function windowOpener(url,width,height,name,scrolls) {
    browserName = navigator.appName;
    browserVer = navigator.appVersion.substring(0,1);
    if (width==null) {width=600;}
    if (height==null) {height=400;}
    if (name==null) {name="globaltPopup"}
    if (scrolls==true) {
        scrollsOption="yes";
    } else {
        scrollsOption="no";
    }
    var topPx = (browserName=="Netscape")?"screenX":"top";
    var leftPx = (browserName=="Netscape")?"screenY":"left";
    if (browserName != "Netscape" || browserVer != 2) {
        controlWindow=window.open(url,name,"toolbar=no,height="+height+",width="+width+",location=no,directories=no,status=no,menubar=no,scrollbars="+scrollsOption+",resizable=no,"+leftPx+"=0,"+topPx+"=0");
		controlWindow.focus()
    } 
}

