$(document).ready(function(){	
	
		$("h1",$("#menu_page_left,#body_page > #content_body")).each(function(){
			//if($('#content_body_home',$("#body")).text()!="") return;
			var w1 = $(this).width();
			var isIE6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1 && navigator.appVersion.indexOf("MSIE 7.0") == -1 && navigator.appVersion.indexOf("MSIE 8.0") == -1);

			if($.browser.msie && isIE6){
				$(this).prepend("<div class='slah_image'>&nbsp;</div>&nbsp;");
				$(this).wrapInner("<div class='line1_h1'></div>");			
				var w2 = $('> .line1_h1',this).width();
				if(w2=='NaN') w2=0;
			}else{
				$(this).prepend("<div class='slah_image'>&nbsp;</div>&nbsp;");
				$(this).wrapInner("<div class='line1_h1'></div>");				
				var w2 = $('> .line1_h1',this).width();
				if(w2=='NaN') w2=0;
			}
		});
});
