﻿
  $(document).ready(function() {
      $("#enquiryPic").mouseover(function() {
               	 $("#active").hide();
				  $("#inactive").show();
      });
	  $("#enquiryPic").mouseout(function() {						 $("#active").show();				  $("#inactive").hide();      });          });

