     $().ready(function(){
     	$("#PF_content div").css("width", "");
     	$("p").css("width", "");
     	var LeftColArticle = $("#LeftColArticle");
     	var LeftColAbs = $(".LeftColAbs");
     	$("img").each(function(){
		if($(this).css("position") == "absolute"){
			$(this).css("left", $(this).attr("pfleft"));
		}
	});
	$(".pf").each(function(){
		$(this).css("width", $(this).attr("pfwidth"));
		if($(this).attr("pfmbot") != ""){
			$(this).css("margin-bottom", $(this).attr("pfmbot"));
		}
		if($(this).attr("pfmtop") != ""){
			$(this).css("margin-top", $(this).attr("pfmtop"));
		}
	});
     	if(LeftColArticle.length == 1 || LeftColAbs.length == 1)
     	{
     		
     		$(LeftColAbs).css("left", $(LeftColAbs).attr("pfleft"));
     		$(LeftColAbs).css("margin-top", $(LeftColAbs).attr("pfmtop"));
     		$("#PF_content div").css("width", "400px").css("overflow", "");
	     	$(LeftColArticle).css("width", "200px");
     		$("#LeftColArticle div").css("width", "");
     		$("ul").css("margin-left", "10px");
     		$("ul").css("padding-left", "20px");
     	}
     	window.print();
     });
