/**
 * @author kn1660
 */
jQuery.noConflict();
 
jQuery(document).ready(function(){
  jQuery('#tx_nccountrymenu_locationLink a').hover(
	function () {
		//document.getElementById('countrymenu').style.width = document.getElementById('tx_nccountrymenu_countryListWrapper').style.width;
		
		jQuery('#tx_nccountrymenu_countryListWrapper').slideDown('slow', function(){});
		jQuery('#countrymenu').addClass("hover");
		/*if(jQuery('#countrymenu').hasClass("hover")){
			jQuery('#tx_nccountrymenu_countryListWrapper').slideToggle('slow', function(){
				  jQuery('#countrymenu').removeClass("hover");
		  });
		  
		}
		else{
			jQuery('#countrymenu').addClass("hover");
			 jQuery('#tx_nccountrymenu_countryListWrapper').slideToggle('slow', function(){
				  
		  });
		}*/
	  
	}
  );
  jQuery('.tx_nccountrymenu_closeicon').hover(
	function () {
			jQuery(this).addClass("hover");
			 
	}
  );
  jQuery('.tx_nccountrymenu_closeicon').click(
	function () {
		
			 jQuery('#tx_nccountrymenu_countryListWrapper').slideUp('fast', function(){
				//document.getElementById('countrymenu').style.width = '240px';																 
				jQuery('#countrymenu').removeClass("hover");
		  });
			 
			 
	}
  );
});
