function curnav(id){
	var nav = document.getElementById(id);
	if(nav == undefined) return;
	//nav.style.background = "url(images/rounded.gif) no-repeat bottom center";
	nav.className = "navShowPic";
}

String.prototype.trim= function(){
    return this.replace(/(^\s*)|(\s*$)/g, "");
}