/*
Random Image Link Script
Muhammad Sulaiman Khan
*/

function random_imglink(){
var sPath = window.location.pathname;
//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//alert(sPage);
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="nwhs-1.jpg"
  myimages[2]="nwhs-2.jpg"
  myimages[3]="nwhs-3.jpg"
  myimages[4]="nwhs-4.jpg"
  myimages[5]="nwhs-5.jpg"    
  myimages[6]="nwhs-6.jpg"    
  myimages[7]="nwhs-7.jpg"    
  myimages[8]="nwhs-8.jpg"        
  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.nwhousingservices.co.uk"
  imagelinks[2]="http://www.nwhousingservices.co.uk"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
	 if(sPage=='index.html' || sPage=='')
	 	document.write('<a href='+'"'+imagelinks[1]+'"'+'><img src=/templates/images/'+myimages[1]+' border=0 alt="NorthWest Housing Services"></a>')
	 else if(sPage=='contact_nwhousingservices.html')
	 	document.write('<a href='+'"'+imagelinks[2]+'"'+'><img src=/templates/images/'+myimages[2]+' border=0 alt="NorthWest Housing Services"></a>')
	 else
	    document.write('<a href='+'"'+imagelinks[1]+'"'+'><img src=/templates/images/'+myimages[ry]+' border=0 alt="NorthWest Housing Services"></a>')
}