  $(document).ready(function () {
 $("#nyhetsbrev_epost").placehold();
 $("#skjema_sok").placehold();
 
 // For kategoribokser
 $(".liste-kategori a").each(function(index) {
 var classNames = {
	0: 'en',
	1: 'to',
	2: 'tre'
	} 
 
   // Finn adresse
	var adresse = $(this).attr("href");

   // Finn foreldre som igjen brukes til å finne bilde som skal få wrap
	// Tilrettelegge for wrap
   adresse = '<a href="' + adresse + '"></a>';
	$(this).parent().addClass(classNames[index % 3]).find('img').wrap(adresse);
	}
); // SLUTT each

});  // SLUTT document.ready
