$(document).ready(function() {
	

	$('.products,.representatives').hover
	(
	 
	 	function()
		{
			
			$('#m-'+this.id).show();
		},
		function()
		{
			$('#m-'+this.id).hide();
		}
	 );
	
	
});
