$(document).ready(function() { 
var nav_user_countryselect_on = 0;
$("#your_country_not_available").click(
      function () {
      		$("#nav_user_countryselect").children("ul").show();
      		nav_user_countryselect_on = 1;
      }, 
      function () {
			$("#nav_user_countryselect").children("ul").hide();
      }
);    


	$("#nav_user_countryselect").hover(
	      function () {
	      }, 
	      function () {
	      	if(nav_user_countryselect_on == 1) $(this).children("ul").hide();
	      }
	);  

	/* Zeigt Lightbox für den Vergleich*/
	$("a.compare-view").colorbox();
	/* Erstelle Tabs für die Produktseite*/
	$("#com-single-info-tabs").tabs();

});