$j(document).ready(function(){
	$j('#moduleImg1').hover(function(){
			$j('#moduleBox1').show();
		},
		function(){
			$j('#moduleBox1').hide();
		}
	);
	$j('#moduleImg2').hover(function(){
			$j('#moduleBox2').show();
		},
		function(){
			$j('#moduleBox2').hide();
		}
	);
	$j('#moduleImg3').hover(function(){
			$j('#moduleBox3').show();
		},
		function(){
			$j('#moduleBox3').hide();
		}
	);
	$j('#moduleImg4').hover(function(){
			$j('#moduleBox4').show();
		},
		function(){
			$j('#moduleBox4').hide();
		}
	);
	$j('#moduleImg5').hover(function(){
			$j('#moduleBox5').show();
		},
		function(){
			$j('#moduleBox5').hide();
		}
	);
	$j('#moduleImg6').hover(function(){
			$j('#moduleBox6').show();
		},
		function(){
			$j('#moduleBox6').hide();
		}
	);
});