// JavaScript Document

$(document).ready(function(){
	var navDuration = 200; //time in miliseconds
	
    $('#nav1').hover(function() {
		$(this).animate({ top : "110" }, navDuration); 
		}, function() {
			$(this).animate({ top : "180px" }, navDuration);
      });
});



function locationstoggle()
{
	var x = document.getElementById("ctl00_li_location1");
	if (x != null) {
		x.style.display = x.style.display == "none" ? "block" : "none" ;
	}

	x = document.getElementById("ctl00_li_location2");
	if (x != null) {
		x.style.display = x.style.display == "none" ? "block" : "none" ;
	}

	x = document.getElementById("ctl00_li_location3");
	if (x != null) {
		x.style.display = x.style.display == "none" ? "block" : "none" ;
	}

	x = document.getElementById("ctl00_li_location4");
	if (x != null) {
		x.style.display = x.style.display == "none" ? "block" : "none" ;
	}
	
		x = document.getElementById("ctl00_li_location5");
	if (x != null) {
		x.style.display = x.style.display == "none" ? "block" : "none" ;
	}

	x = document.getElementById("ctl00_li_location6");
	if (x != null) {
		x.style.display = x.style.display == "none" ? "block" : "none" ;
	}

}

