/*===============================================*/ 
function unspammable(part1,part2,part3,linkName,linkColor,linkWeight) {
		if(linkWeight!='') {  showWeight = ";font-weight: "+linkWeight+";\""; } else { showWeight = ""; }
		if(linkColor!='') {  showClass = " style=\"color: "+linkColor+showWeight+"\""; } else { showClass = ""; }
  if(linkName!='') {
    document.write("<a href='mailto:"+part1+"&#64;"+part2+"&#46;"+part3+"'" +showClass+">"+linkName+"</a>");
  } else {
    document.write("<a href='mailto:"+part1+"&#64;"+part2+"&#46;"+part3+"'" +showClass+">"+part1+"&#64;"+part2+"&#46;"+part3+"</a>");
  }  
}
/*===============================================*/ 
function getLocation() {
	alert('current location: '+window.location);
}


$(document).ready(function() {
	// $("#menu").hide();
	var setDelay = 3000;
	$("#main").delay(0).fadeIn(0);
	$("#demo1").delay(setDelay).fadeIn(setDelay);
//	$("#demo1 img[title]").tip();
});
