/***********************************************************************************************************************
DOCUMENT: nth-child-ie-fix.js
BASE CODE: Dave
PIMPED OUT BY: Sons of Ipanema GmbH
DESCRIPTION: Fixes the nth-child incompatibility bug with the lame ass microsoft browser everybody hates!
************************************************************************************************************************/

jQuery(document).ready(function() {
	 
	 
	 jQuery('nav ul li:nth-child(1)').addClass('one');
	 jQuery('nav ul li:nth-child(2)').addClass('two');
	 jQuery('nav ul li:nth-child(3)').addClass('three');
	 jQuery('nav ul li:nth-child(4)').addClass('four');
	 jQuery('nav ul li:nth-child(5)').addClass('five');
	 
	 jQuery('#nv_willkommen nav ul li:nth-child(1)').addClass('one-p');
	 jQuery('#nv_was nav ul li:nth-child(2)').addClass('two-p');
	 jQuery('#nv_wer nav ul li:nth-child(3)').addClass('three-p');
	 jQuery('#nv_wjg nav ul li:nth-child(4)').addClass('four-p');
	 jQuery('#nv_wbg nav ul li:nth-child(5)').addClass('five-p');
	 
});


