/* Basic Javascript */


function OnPageLoad()
{
	var Images = Array(
		'/themes/pcn2/images/buttons/homeOver.gif',
		'/themes/pcn2/images/buttons/mycastOver.gif',
		'/themes/pcn2/images/buttons/showsOver.gif',
		'/themes/pcn2/images/buttons/feedsOver.gif',
		'/themes/pcn2/images/buttons/aboutOver.gif' );
		
	PreloadImages(Images);
}


function PreloadImages(Array)
{
	for( var x = 0; x < Array.length; x++ )
		RVG_preloadImages(Array[x]);
}

