$(function(){
	// Get menu
	menu = $("#breadcrumb .service");
	// Get service content
	services = $("#service_container .service");
	// Add click function
	$(menu).each(function(i,e){
		$(this).click(function(){
			// Show overlay
			$("#service_container .overlay").show();
			// Hide all services
			$(services).hide();
			// Show current service
			$(services).eq(i).show();
			// Fade out overlay
			$("#service_container .overlay").fadeOut(300);
			// Remove current active menu
			$(menu).removeClass("active");
			// Set active menu
			$(this).addClass("active");
		});
	});
	// Add click function to links in the top of the page
	$("#Produkter-list-item li").each(function(i,e){
		$(this).click(function(){
			// Scroll down to text
			$('html,body').animate({scrollTop:'951px'},500,'swing');
			// Hide all services
			$(services).hide();
			// Show current service
			$(services).eq(i).show();
			// Remove current active menu
			$(menu).removeClass("active");
			// Set active menu
			$(menu).eq(i).addClass("active");
		});
	});
	// Add fancybox to order-links
	$("a.order").fancybox({'width': 700,'height': 470,'type':'iframe'});
});
