		

 
 $(document).ready(function(){
   		
		// Top menu -  Active stage 
   		/*$(".topMenu li").click(function(){
    		$(".topMenu li").removeClass("act");
			$(this).addClass("act");

		;return false;
		});*/

		// Top menu -  Last link background crossbrowser fix 
		$(".topMenu li:last-child a").addClass("last")
		
		// First page konsument 
   		$(".konsument a").mouseover(function(){
    		$(".konsument a .header").addClass("hide");
			$(".konsument a .description").addClass("show");
		});

   		$(".konsument a").mouseout(function(){
    		$(".konsument a .header").removeClass("hide");
			$(".konsument a .description").removeClass("show");
		});
		
		// First page företag
   		$(".foretag a").mouseover(function(){
    		$(".foretag a .header").addClass("hide");
			$(".foretag a .description").addClass("show");
		});

   		$(".foretag a").mouseout(function(){
    		$(".foretag a .header").removeClass("hide");
			$(".foretag a .description").removeClass("show");
		});
		
		// Bottom select box 
		/*$(function(){
			$('form').jqTransform({imgPath:'images\temp'});
		});*/
		
  });
  
 

