

function removeFocusOnAllLinks(){

for(var i=0 ; i < document.links.length ; i++) 

document.links[i].onfocus=blurLink; 

}

 

function blurLink() {

if (this.blur) this.blur(); 

}

 

window.onload=removeFocusOnAllLinks;







function preloader() 

{

     var i = 0;

	 

     imageObj = new Image();

	 

     images = new Array();

	 images[0]="images/top_over.gif"

	 images[1]="images/top_down.gif"
	 
	 images[2]="images/signup_over.jpg"
	 

     for(i=0; i<=3; i++)

	 {

		 imageObj.src=images[i];

	 }



} 



function topOver(obj)

	{
	obj.style.zindex='+1';	
		
    obj.style.height='auto';
	
	obj.style.overflow='visible';
	
	obj.style.background='url(images/top_over.gif)';

    obj.style.borderLeft='1px solid #4f61a9';

    obj.style.borderRight='1px solid #8b99cc';

    obj.style.cursor='pointer';

    }

    

function topDown(obj)

	{
	obj.style.zindex='+1';	
		
    obj.style.height='auto';
	
	obj.style.overflow='visible';

	obj.style.background='url(images/top_down.gif)';

    obj.style.borderRight='1px solid #4f61a9';

    obj.style.borderLeft='1px solid #8b99cc';

	}

    

function topOut(obj)

	{
		
	obj.style.zindex='+1';	
	
	obj.style.height='41px';
	
	obj.style.overflow='hidden';

	obj.style.background='url(images/top.gif)';

    obj.style.borderLeft='1px solid #8b99cc';

    obj.style.borderRight='1px solid #4f61a9';

    }
	
	
	

function secondaryOver(obj)

	{
	obj.style.zindex='+1';	
	
	obj.style.backgroundColor='#495ca8';

    obj.style.cursor='pointer';

    }

    

function secondaryDown(obj)

	{
	obj.style.zindex='+1';	
	
	obj.style.backgroundColor='#384b97';

    obj.style.cursor='pointer';

	}

    

function secondaryOut(obj)

	{
	obj.style.zindex='+1';	
	
	obj.style.backgroundColor='#273a86';
	
	obj.style.cursor='pointer';

    }
	

function BtnOvr(obj)

	{

	obj.style.background='url(images/signup_over.jpg)';
	
	obj.style.cursor='pointer';

	}

    

function BtnOut(obj)

	{

	obj.style.background='url(images/signup_normal.jpg)';

    }


