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