﻿/*
'--------------------------------------------------------------------------------------------------
' Title			: Site Homepage JavaScript
' Description	: JavaScript functions and declarations for the site homepage
'--------------------------------------------------------------------------------------------------
' History
' 10/05/2009	: DPE - Created Page
'--------------------------------------------------------------------------------------------------
*/

// Initializes the news rotator
function initNewsBox() {
	$(".newsBox ul").cycle({
		fx:'scrollDown',
		timeout:6000,
		cleartype:0,
		pause:1 //Pauses the rotation on hover
	});
}

// Initializes the secondary ads
function initSecAdBoxes() {
	$("#secAdBoxA").cycle({
		fx:'fade',
		timeout:6000,
		speed:1500,
		cleartype:0,
		pause:1 //Pauses the rotation on hover
	});
	$("#secAdBoxB").cycle({
		fx:'fade',
		timeout:6000,
		speed:1500,
		cleartype:0,
		pause:1 //Pauses the rotation on hover
	});
}

$(document).ready(function(){
	initNewsBox();
	initSecAdBoxes();
});

