	$(document).ready(function() {
	/*********************************************
	   	Toggle among tab menus
	**********************************************/
	   	
		var arrValues = [ "tab_dept_sections.gif", "tab_adopted_regs.gif", "tab_plan_updates.gif", "tab_projects.gif" ];
	   	
	   	$("#tab1").mouseover(function() {
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "tab_dept_sections_h.gif')");
      		$('#expand_1').show();
      		$('#expand_2').hide();
      		$('#expand_3').hide();
      		$('#expand_4').hide();
      		$("li[id^=Reg1List]").hide();
      		$("li[id^=Reg2List]").hide();
  		});
    	$("#tab2").mouseover(function(){
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "tab_adopted_regs_h.gif')");
      		$('#expand_1').hide();
      		$('#expand_2').show();
      		$('#expand_3').hide();
      		$('#expand_4').hide();
      		$("li[id^=Reg1List]").hide();
      		$("li[id^=Reg2List]").hide();
    	});
    	$("#tab3").mouseover(function(){
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "tab_plan_updates_h.gif')");
      		$('#expand_1').hide();
      		$('#expand_2').hide();
      		$('#expand_3').show();
      		$('#expand_4').hide();
      		$("li[id^=Reg1List]").hide();
      		$("li[id^=Reg2List]").hide();
    	});
    	$("#tab4").mouseover(function() {
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "tab_projects_h.gif')");
      		$('#expand_1').hide();
      		$('#expand_2').hide();
      		$('#expand_3').hide();
      		$('#expand_4').show();
      		$("li[id^=Reg1List]").hide();
      		$("li[id^=Reg2List]").hide();
  		});	
  		$("#Reg1").mouseover(function(){
      		$("li[id^=Reg1List]").show();
      	});
		$("#Reg2").mouseover(function(){
      		$("li[id^=Reg2List]").show();
      	});
		
		
		
 	});  