// JavaScript Document
$('document').ready(function(){init()});

function init(){
	$('#activeBanner').tabs().tabs("rotate" , 6000, false);
	$('#activeBanner li a').bind('mouseover', function(){$(this).click()});
	
	$('#accordion').tabs();
	//$('#accordion').accordion({ autoHeight: false, active:false, collapsible:true });
}
function tabclick(e){
	alert(e.target);
}
function gotoURL(oSelRef)
{
	if (oSelRef.selectedIndex > 0)
	{		
		oWin = window.open(oSelRef.options[oSelRef.selectedIndex].value,oSelRef.selectedIndex,"toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
		//oWin.focus();
		oSelRef.selectedIndex = 0;
	}
}
