/* * init javascript by CCI IT GROEP * http://www.cci-itgroep.nl/ * Copyright (c) 2009 CCI IT GROEP *//*== HideEmptyImages ==*/function HideEmptyImages(){		var regex_1 = new RegExp("(shownoimg)\.gif$");		for (var i=0; i < document.images.length; i++)	{		if (regex_1.test(document.images[i].src))		{			document.images[i].style.display = "none";		}	}}/*== ==*//*== moveSubToLevel1Item ==*/function moveSubToLevel1Item(containerExpression){	$(containerExpression + " .level2").each(function(index)	{		var level2 = $(this);		$(this).prev("div:eq(0)").append($('<div>').append(level2).html());		$(level2).remove();	});}/*== ==*//*== Body onload (jQuery) ==*/$(document).ready(function(){	HideEmptyImages();	moveSubToLevel1Item("#menu_margins");});/*== ==*/
