$num = 0;

$(document).ready(function(){

	$("#actForm",this).hide();
	$("#gAuto",this).hide();
	$("#pSess",this).hide();
	$("#mForm",this).hide();
	
	$(".hG",this).mouseenter(function(){
		$(".hG").attr("id","hGon");
		$(".hD").attr("id","hDoff");
		$(".bG").attr("id","bGoff");
		$(".bD").attr("id","bDoff");
		
		$("#actForm").show("normal");
		$("#gAuto").hide();
		$("#pSess").hide();
		$("#mForm").hide();
	});
	
	$(".hD",this).mouseenter(function(){
		$(".hD").attr("id","hDon");
		$(".hG").attr("id","hGoff");
		$(".bG").attr("id","bGoff");
		$(".bD").attr("id","bDoff");
		
		$("#actForm").hide();
		$("#gAuto").show("normal");
		$("#pSess").hide();
		$("#mForm").hide();
	});
	
	$(".bG",this).mouseenter(function(){
		$(".bG").attr("id","bGon");
		$(".hG").attr("id","hGoff");
		$(".hD").attr("id","hDoff");
		$(".bD").attr("id","bDoff");
		
		$("#actForm").hide();
		$("#gAuto").hide();
		$("#pSess").show("normal");
		$("#mForm").hide();
	});
	
	$(".bD",this).mouseenter(function(){
		$(".bD").attr("id","bDon");
		$(".hG").attr("id","hGoff");
		$(".hD").attr("id","hDoff");
		$(".bG").attr("id","bGoff");
		
		$("#actForm").hide();
		$("#gAuto").hide();
		$("#pSess").hide();
		$("#mForm").show("normal");
	});

});
