	var bkImage = "background-image";
   	var imagePath = "url(\'/Attachments/planning/Images/generalImages/";

	function switchTabImage(arrValues) {
   		$.each(
   		arrValues,
   		function(intIndex, objValue) {
	   		intIndex++;
	   		var tabId = "#tab" + intIndex;
	   		$(tabId).css(bkImage, imagePath + objValue + "\')");
   		})
	} //end of func switchTabImage
   	
   	
   	
   	  	
   	
   	$(document).ready(function() {
	   	
	   /*********************************************
	   	Turn off the Title of section/department 
	   	landing page tabs
	   	**********************************************/
	   	$('#tabsPanel h4').css('display', 'none');
	   	$("tr[id^=expand_]").hide();
	   		   	
	   	
	   	   	   	
	   	/*********************************************
	   	Turn off the "Printer Friendly View" link and
	   	H2 level Page Title
	   	**********************************************/
	   	if ( $("div#maskPB").length > 0 ) {
			$("div.smcSpacer10px").css("display","none");
			$("h2").css("display","none");
			$("div").filter(function() {
		  		if ($(this).find('a').text() == "Printer Friendly View") {
		  			$(this).css("display","none");
			  	} else {
		  	  		return false;
		  		}
			});
			$("div.smcCsContentText").css("margin", "0");
			$("div.smcCsContentText").css("padding", "0");
			$("div.smcCsContentText").css("width", "100%");
							
		} else {
			return false;
		}	
		
		

 	});  