jQuery(document).ready(function() {
  Cufon.replace('h2');
  jQuery('input:checkbox').checkbox({cls:'jquery-safari-checkbox' ,empty: '/theme/images/empty.png'});
  $('.png').supersleight({shim: 'theme/images/x.gif'});


$(".land").hide();
$("#europe").show();

$(".kontinente .bg ul li a").click(function(){
	$(".land").fadeOut("slow");
	$(".kontinente .bg ul").find("a").removeClass("active");
	$(this).addClass("active");

	switch (this.id) {
	
		case "aasia":
			$("#asia").fadeIn("slow");
		break;
		
		case "anorthamerica":
			$("#northamerica").fadeIn("slow");
		break;
	
		case "alatinamerica":
			$("#latinamerica").fadeIn("slow");
		break;
	
		case "aafrica":
			$("#africa").fadeIn("slow");
		break;
	
		default:
			$("#europe").fadeIn("slow");
		break;
	
	};
	return false;

})

 });
