$(document).ready(function(){ 
  $('#countryItem').hover(
    function(){
      $('div:first', $(this)).show();
    },
    function(){
      $('div', $(this)).hide();
    }
  );
  $('.countrySubNav').hover(
    function(){
		$('#countryItem').addClass('myhover');
	},
	function(){
		$('#countryItem').removeClass('myhover');
	}
  );    
});

function resetText(myval,myform,myel){
	var inputval = document.forms[myform].elements[myel].value;
	if(inputval.length<1){
	  document.forms[myform].elements[myel].value = myval; 
	}
}


