// Home FeaturedPromo

 var FPscrollerwidth = 300;
 var FPscrollerheight = 250; 
 var FPpause_for = 30000; 
 var FPscrollerbackground='/images/popup_bkg.gif';
 var FPscrollerbgcolor='#ff';
  

if (FPmessages.length > 1)	
	c=1;
	else
	c = 0;
	

	function FPMove(whichdiv)
	{
		
		tdiv=eval(whichdiv);	
		
		if (c > FPmessages.length-1)
		{
			c=0;
			tdiv.innerHTML= FPmessages[c];
		}
		
		else
		{
			tdiv.innerHTML= FPmessages[c];
			c = c+1;
		}
		
		if (FPmessages.length > 1)
		{
			setTimeout("FPMove(FPBanner)",FPpause_for);
		}
	}



	if (document.all)
		{
			// IE purpose
			document.writeln('<div id="FPmain" style="position:relative;width:'+FPscrollerwidth+';height:'+FPscrollerheight+';overflow:hidden;background-color:'+FPscrollerbgcolor+' ;background-image:url('+FPscrollerbackground+')">');		
			document.writeln('<div id="FPBanner" style="position:absolute;width:'+FPscrollerwidth+';left:0;top:1;">');
			document.write(FPmessages[0]);
			document.writeln('</div>');			
			document.writeln('</div>');	
			
		}
	else
	// netscape and firefox purpose
	if (document.getElementById)
		{
			document.writeln('<div id="FPmain" style="position:relative;width:'+FPscrollerwidth+';height:'+FPscrollerheight+';overflow:hidden;background-color:'+FPscrollerbgcolor+' ;background-image:url('+FPscrollerbackground+')">');		
			document.writeln('<div id="FPBanner" style="position:absolute;width:'+FPscrollerwidth+';left:0;top:1;">');
			document.write(FPmessages[0]);
			document.writeln('</div>');		
			document.writeln('</div>');		
		
		}


function FPscroll()
{		
	if (document.all)
	{
		// IE purpose	
		FPMove(FPBanner);		
	}
	else 
	{
		if(document.getElementById)
		{

			// netscape purpose		
			FPMove( document.getElementById("FPBanner"));	
		
		}	
		
	}
}