(function($){
	$(document).ready(function(){
		
		// Mainnav
		
		$("#nav li a").mouseover(function () {
			$("#nav ul").hide();
			$(this).parent('li').children('ul').show();

	  });
	
		$("#nav li a").mouseout(function () {
			$("#nav ul").hide();			
			$("#nav li.selected ul").show();

	  });	
	
		$("#nav li ul").mouseover(function () {
			$(this).show();
			$(this).parent('li').addClass("hover");			
	  });
	
		$("#nav li ul").mouseout(function () {
			$(this).hide();
			$(this).parent('li').removeClass("hover");						
	  });	
	
		$("#nav li.selected ul").mouseout(function () {
			$(this).show();
	  });	
		
				
		// Last
		$('#metanav li:last-child').addClass('last');
		$('#languagenav li:last-child').addClass('last');
		$('#nav ul li:last-child').addClass('last');


		// Fancybox Video
		$(".video").fancybox({
			'width'				: '60%',
			'height'			: '60%',
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
		
		// Fancybox Map
		$(".map").fancybox({
			'width'				: '70%',
			'height'			: '70%',
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
		

		// Add zoom button
		$(".zoom").append("<span></span>");
	

		// ImgHover
		$(".hover").imghover({suffix: "_hover"});
		$(".btn").imghover({suffix: "_hover"});	


	});
})(jQuery);
