/*
'--------------------------------------------------------------------------------------------------
' Title			: Site Homepage JavaScript
' Description	: JavaScript functions and declarations for the site homepage
'--------------------------------------------------------------------------------------------------
' History
' 04/01/2010	: DPE - Created Page
' 04/12/2010	: JH - Modified page for KB
'--------------------------------------------------------------------------------------------------
*/

// Initializes the Welcome rotator
function initPrimaryAd() {
	jQuery("#PrimaryAd .rotators").cycle({
		fx:'fade',
		timeout:8000,
		cleartype:0,
		pause:1 //Pauses the rotation on hover
	});
}

jQuery(document).ready(function(){
	initPrimaryAd();
	
	jQuery("#menuitem").tabs(
	{ 
	}
	);

});


