// JavaScript Document
// Open House Listings javascript support file
// Use for visual effects on OpenHomeLive.com
 jQuery(document).ready(function($) {
   jQuery("a.largemapopen").click(function() {
     jQuery("div.largemap").animate({ height: 'show', opacity: 'show' }, 'slow');
   });
   jQuery("a.largemapclose").click(function() {
     jQuery("div.largemap").animate({ height: 'hide', opacity: 'hide' }, 'slow');
   });
 });
