//search start
function _clearSearch()
{
	if (document.frmSearch.txtSearch.value == "search")
		document.frmSearch.txtSearch.value = "";
}

function _submitSearch()
{
	if ((document.frmSearch.txtSearch.value == "search") || (document.frmSearch.txtSearch.value == ""))
	{
		
		alert("Masukkan keyword pencarian!");
		return false;
	}
}
//search end

//navigation start
function _menuHover(menu, page)
{
	_menuOut(page);
	switch(menu.id)
	{
		case "home" :
			document.getElementById("home").src = "http://www.summareconbekasi.com/i/menu_home_h.gif";
		break;
		case "aboutus" :
			document.getElementById("aboutus").src = "http://www.summareconbekasi.com/i/menu_aboutus_h.gif";
		break;
		case "locationmap" :			
			document.getElementById("locationmap").src = "http://www.summareconbekasi.com/i/menu_locationmap_h.gif";
		break;
		case "projects" :			
			document.getElementById("projects").src = "http://www.summareconbekasi.com/i/menu_projects_h.gif";
		break;	
		case "facilities" :			
			document.getElementById("facilities").src = "http://www.summareconbekasi.com/i/menu_facilities_h.gif";
		break;
		case "townmanagement" :			
			document.getElementById("townmanagement").src = "http://www.summareconbekasi.com/i/menu_townmanagement_h.gif";
		break;
		case "ebrochures" :			
			document.getElementById("ebrochures").src = "http://www.summareconbekasi.com/i/menu_ebrochures_h.gif";
		break;
		case "promoandnews" :			
			document.getElementById("promoandnews").src = "http://www.summareconbekasi.com/i/menu_promoandnews_h.gif";
		break;
	}
}	

function _menuOut(page)
{
	if (page != "home") 
		document.getElementById("home").src = "http://www.summareconbekasi.com/i/menu_home.jpg";	
	if (page != "aboutus")
		document.getElementById("aboutus").src = "http://www.summareconbekasi.com/i/menu_aboutus.jpg";
	if (page != "locationmap")
		document.getElementById("locationmap").src = "http://www.summareconbekasi.com/i/menu_locationmap.jpg";
	if (page != "projects")
		document.getElementById("projects").src = "http://www.summareconbekasi.com/i/menu_projects.jpg";	
	if (page != "facilities")
		document.getElementById("facilities").src = "http://www.summareconbekasi.com/i/menu_facilities.jpg";
	if (page != "townmanagement")
		document.getElementById("townmanagement").src = "http://www.summareconbekasi.com/i/menu_townmanagement.jpg";
	if (page != "ebrochures")
		document.getElementById("ebrochures").src = "http://www.summareconbekasi.com/i/menu_ebrochures.jpg";
	if (page != "promoandnews")
		document.getElementById("promoandnews").src = "http://www.summareconbekasi.com/i/menu_promoandnews.jpg";
}
//navigation end

//navigation project start
function _openNav(id)
{
	if (document.getElementById(id).style.display == "none")
	{
		document.getElementById(id).style.display = "block";
	}
	else
	{
		document.getElementById(id).style.display = "none";
	}
}
//navigation project end
