jQuery(function() {
	var zIndexNumber = 1000;
	jQuery('div').each(function() {
		jQuery(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
		
	});

	jQuery(".authorList").first().addClass("shopItemfirst");
    jQuery(".authorList:nth-child(3n)").addClass("shopItemlast");
    jQuery(".shopItemlast").next().addClass("shopItemfirst");

	if(jQuery.cookie('cunit') == "incoweb" ) {	
	}
	else {
    jQuery(".startseite > div:not(#header)").hide();
    jQuery(".startseite #header").delay(100).fadeIn(100);
    jQuery(".startseite").append("<embed hidden='true' src='http://ind66.srv14.incoweb.de/typo3/fileadmin/template/sound.mp3' autostart=true loop=false>");
    jQuery(".startseite > div:not(#header)").delay(3000).fadeIn(3000);
    jQuery.cookie('cunit', 'incoweb');
	};

});

