//to avoid span email
var email = new Array();
email[0] = "gmhk9";
email[1] = "";

var email1 = new Array();
email1[0] = "aol";
email1[1] = "";

var email2 = new Array();
email2[0] = "com";
email2[1] = "";

var at = "@";
var dot = ".";
var avoidspam = "<a href=\"mailto:" + email[0] + at + email1[0] + dot + email2[0]  + "\">"+ email[0] + at + email1[0] + dot + email2[0] +"</a>";
//var avoidspam1 = "<a href=\"mailto:" + email[1] + at + email1[1] + dot + email2[1] + "\">"+ email[1] + at + email1[1] + dot + email2[1] +"</a>";

//---------------------------------------------------------------------------------------------------------------------------------------------------

/*var picsArray = new Array("images/fp1.jpg", "images/fp2.jpg", "images/fp3.jpg", "images/fp4.jpg", "images/fp5.jpg", "images/fp6.jpg", "images/fp7.jpg", "images/fp8.jpg", "images/fp9.jpg", "images/fp10.jpg");
 
function randomLogo()
//            ------------
// display pictures and its respective name ramdomly everytime page is loaded
{
  var hitRefresh = (Math.floor(Math.random() * 10) );
  document.images["fp"].src=picsArray[hitRefresh]
  
  setTimeout("randomLogo();",5000);
}*/

//---------------------------------------------------------------------------------------------------------------------------------------------------

function preloadImages()
//            -----------------
//preload images
{
	if(document.images){

	one = new Image();
	two = new Image();
	three = new Image();
	four = new Image();
	five = new Image();
	six = new Image();
	seven = new Image();
	//eight = new Image();
	//nine = new Image();
	//ten = new Image();
	
	one.src = "images/fp1.jpg";
	two.src = "images/fp2.jpg";
	three.src = "images/fp3.jpg";
	four.src = "images/fp4.jpg";
	five.src = "images/fp5.jpg";
	six.src = "images/fp6.jpg";
	seven.src = "images/fp7.jpg";
	//eight.src = "images/fp8.jpg";
	//nine.src = "images/fp9.jpg";
	//ten.src = "images/fp10.jpg";
	}
	
}




