function showPlace(objId,imageLocation,subMenuId,imageId){
	if((objId != null) && (objId != ""))
	{
		var el = document.getElementById(objId);
		if((el != null) && (el != ""))
		{
			$(el).addClass("selected");
		
			if(el.className == "title selected")
			{
				if((imageId != null) && (imageId != ""))
				{
					var theImage = document.getElementById(imageId);
					theImage.src=imageLocation + "/sideMenu/down.gif";
				}
				if((subMenuId != null) && (subMenuId != ""))
				{
					show(document.getElementById(subMenuId));
				}
			}
		}
	}
}

function hover(obj){
//alert("working");
	if((obj != null) && (obj != ""))
	{
		$(obj).toggleClass("hover");
	}
	//alert(obj.className);
}
