$(function(){




	$('#access li:not(.current-menu-item, .current-page-ancestor, .current_page_parent) a')
	
	.css( {backgroundPosition: "0 43px"} )
	
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 18px)"}, {duration:200})
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 43px)"}, {duration:200})
	})
	
	//NTH-CHILD FALLBACK
	
	$('.start-produkt:nth-child(3n+1)').addClass('odd');	
	
	$('.employee:nth-child(3n+1)').addClass('odd');
	
	$('#post-191 p:nth-child(2n)').addClass('gray');
	
	
	
	$('.lang-sv .foot-menyer > li:nth-child(1)').css('width', '350px');
	
	$('.lang-sv .foot-menyer > li:nth-child(2)').css('width', '310px');
	
	$('.lang-sv .foot-menyer > li:nth-child(3)').css('width', '280px');

	
	$('.lang-en .foot-menyer > li:nth-child(1)').css('width', '250px');
	
	$('.lang-en .foot-menyer > li:nth-child(2)').css('width', '420px');
	
	$('.lang-en .foot-menyer > li:nth-child(3)').css('width', '280px');
	
	
	$('.lang-nl .foot-menyer > li:nth-child(1)').css('width', '350px');
	
	$('.lang-nl .foot-menyer > li:nth-child(2)').css('width', '310px');
	
	$('.lang-nl .foot-menyer > li:nth-child(3)').css('width', '280px');	
	
	
	$('.lang-de .foot-menyer > li:nth-child(1)').css('width', '350px');
	
	$('.lang-de .foot-menyer > li:nth-child(2)').css('width', '310px');
	
	$('.lang-de .foot-menyer > li:nth-child(3)').css('width', '280px');

	
	$('.lang-fr .foot-menyer > li:nth-child(1)').css('width', '350px');
	
	$('.lang-fr .foot-menyer > li:nth-child(2)').css('width', '310px');
	
	$('.lang-fr .foot-menyer > li:nth-child(3)').css('width', '280px');	

});

