$(document).ready(function() {
	var aaa = $("li.neviStatic > a").html();
   	$("li.neviStatic").empty();
   	$("li.neviStatic").append(aaa);
   	
   	$("a.static").removeAttr("href");
   	
   	
   	$(".contentWrapper").children().each(function () {

		$(this).not(".mainContent").not("table").not("img").css("padding-left","20px");
   	});
   	
   	//gallery
   	$('.galleryTrunk').each(function(){
		$(this).find('a').lightBox();
   	});
   	
 });	
