	$(document).ready(function() {
	   	
	   	var arrValues = [ "tab_complaint_forms.gif", "tab_brochures_only.gif", "tab_adopted_regs.gif", "pixel.gif" ];
	   	
	   	$("#tab1").mouseover(function(){
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "tab_complaint_forms_h.gif')");
      		$('#expand_1').show();
      		$('#expand_2').hide();
      		$('#expand_3').hide();
    	});
    	
	   	$("#tab2").mouseover(function(){
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "tab_brochures_only_h.gif')");
      		$('#expand_1').hide();
      		$('#expand_2').show();
      		$('#expand_3').hide();
    	});
	   	$("#tab3").mouseover(function(){
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "tab_adopted_regs_h.gif')");
      		$('#expand_1').hide();
      		$('#expand_2').hide();
      		$('#expand_3').show();
    	});
		$("#tab4").mouseover(function() {
      		switchTabImage(arrValues);
      		$(this).css(bkImage, imagePath + "pixel.gif')");
      		$('#expand_1').hide();
      		$('#expand_2').hide();
      		$('#expand_3').hide();
  		});	
 	}); 

