
function navigatePage(){
			
			var obj=document.quickFind;
			
			selection = obj.selection.value;
			
			selectionValue = parseInt(selection)
			
			if (selectionValue == 1){
				
				window.location='/loans-business.html';
				return true;
			}			
			if (selectionValue == 2){
				
				window.location='/savings-investments.html';
				return true;
			}	
			if (selectionValue == 3){
				
				window.location='/business-insurance.html';
				return true;
			}		
			if (selectionValue == 4){
				
				window.location='/Investment-advice.html';
				return true;
			}						
		}
		

<!--

	pic0 = new Image(615,99); 
  pic0.src="/img/banners/commercial_insurance.gif"; 
  
  pic1 = new Image(615,99); 
  pic1.src="/img/banners/savings_investments.gif"; 
  
  pic2 = new Image(615,99); 
  pic2.src="/img/banners/personal_loans.gif"; 
  
  pic3 = new Image(615,99); 
  pic3.src="/img/banners/domestic-insurance.gif"; 
  
  pic4 = new Image(615,99); 
  pic4.src="/img/banners/business_loans.gif"; 
  
  pic5 = new Image(615,99); 
  pic5.src="/img/banners/home_loans.gif"; 
  
	var item=new Array();
	item[0]="<a href='/business-insurance.html'><img name='pic0' src='/img/banners/commercial_insurance.gif' border='0'></a>";
	item[1]="<a href='/savings-investments.html'><img name='pic1' src='/img/banners/savings_investments.gif' border='0'></a>";
	item[2]="<a href='/loans-personal.html'><img name='pic2' src='/img/banners/personal_loans.gif' border='0'></a>";
	item[3]="<a href='/domestic-insurance.html'><img name='pic3' src='/img/banners/domestic-insurance.gif' border='0'></a>";
	item[4]="<a href='/loans-business.html'><img name='pic4' src='/img/banners/business_loans.gif' border='0'></a>";
	item[5]="<a href='/loans-home.html'><img name='pic5' src='/img/banners/home_loans.gif' border='0'></a>";
	
	var current = Math.floor(Math.random()*6);

	var ns6=document.getElementById&&!document.all;
	
	function changeItem(){
		
		if(document.layers){
			document.layer1.document.write(item[current]);
			document.layer1.document.close();
		}
		
		if(ns6)document.getElementById("div1").innerHTML=item[current]
		{
			if(document.all){
			div1.innerHTML=item[current];
			}
		}

		if (current==5){
			current=0;
		}
		
		else{
			current++;
		}
		
		setTimeout("changeItem()",10000);
	}
	window.onload=changeItem

//-->