$(document).ready(function(){

	$('#navigationMenu li .normalMenu').each(function(){

		$(this).before($(this).clone().removeClass().addClass('hoverMenu'));

	});
	
	$('#navigationMenu li').hover(function(){
	
		$(this).find('.hoverMenu').stop().animate({marginTop:'0px'},200);

	},
	
	function(){
	
		$(this).find('.hoverMenu').stop().animate({marginTop:'-25px'},200);

	});
	
});


function OK()
{
if (document.branch.postcode.value == "")
      {
	alert("Please input your postcode .");
	return false;
	}
	

}

function OK2()
{
if (document.branch2.postcode.value == "")
      {
	alert("Please input your postcode .");
	return false;
	}
	

}


