$jx = jQuery.noConflict();

jQuery(document).ready(function($jx) {
	$jx('#map-1').hover(
	  function () {
	    $jx('#location-1').show();
	  },
	  function () {
	    $jx('#location-1').hide();
	 });
	 
	 $jx('#map-2').hover(
	  function () {
	    $jx('#location-2').show();
	  },
	  function () {
	    $jx('#location-2').hide();
	 });
	 
	 $jx('#map-3').hover(
	  function () {
	    $jx('#location-3').show();
	  },
	  function () {
	    $jx('#location-3').hide();
	 });
	 
	 $jx('#map-4').hover(
	  function () {
	    $jx('#location-4').show();
	  },
	  function () {
	    $jx('#location-4').hide();
	 });
	 
	 $jx('#map-5').hover(
	  function () {
	    $jx('#location-5').show();
	  },
	  function () {
	    $jx('#location-5').hide();
	 });
	 
	 $jx('#map-6').hover(
	  function () {
	    $jx('#location-6').show();
	  },
	  function () {
	    $jx('#location-6').hide();
	 });
	 
	 $jx('#map-7').hover(
	  function () {
	    $jx('#location-7').show();
	  },
	  function () {
	    $jx('#location-7').hide();
	 });
	 
	 $jx('.locations').unbind('handlerInOut');
	 
});
