$(document).ready(function()
{
	
	
	/* POPBOX */
	$("#popBoxCloseBtn").click(function(){
		$(".popBox").hide();
		$(".popBox-overlay").hide();
	});
	$(".popBox").fadeIn("slow");
	$(".popBox-overlay").css({opacity: 0.8});
	$(".popBox-overlay").fadeIn("slow");
	
	
	

	/* ladda bilder så effekten blir hundraprocentig */
	var _images = [
		'/graphics/content/bilder-fran-produktionsenheten_gold.png',
		'/graphics/content/bilder-fran-produktionsenheten_gray.png',
		'/graphics/content/menu/menu_kontakt_b.gif',
		'/graphics/content/menu/menu_kontakt_g.gif',
		'/graphics/content/menu/menu_kvalitet_b.gif',
		'/graphics/content/menu/menu_kvalitet_g.gif',
		'/graphics/content/menu/menu_omoss_b.gif',
		'/graphics/content/menu/menu_omoss_g.gif',
		'/graphics/content/menu/menu_produktion_b.gif',
		'/graphics/content/menu/menu_produktion_g.gif',
		'/graphics/content/menu/menu_start_b.gif',
		'/graphics/content/menu/menu_start_g.gif',
		'/graphics/content/menu/menu_trans.gif'
	];
	var gotime = _images.length;
	$.each(_images,function(e) 
	{
		$(new Image()).load(function() 
		{
			if (--gotime < 1) begin();
		}).attr('src',this);
	});
	
	$("#bilder_fran_produktionsenheten").mouseover(function (event) {
		$(this).attr("src", "/graphics/content/bilder-fran-produktionsenheten_gold.png");
	});
	
	$("#bilder_fran_produktionsenheten").mouseout(function (event) {
		$(this).attr("src", "/graphics/content/bilder-fran-produktionsenheten_gray.png");
	});
	
	
	
});
