$(document).ready(function() {
  $('div.Accordion> div').hide();  
  $('div.Accordion> h2').click(function() {
    var $thisHeading = $(this);
    var $nextDiv = $(this).next();
    var $visibleSiblings = $nextDiv.siblings('div:visible');
    if ($visibleSiblings.length ) {
      $visibleSiblings.slideUp(1000, function() {
        $nextDiv.slideToggle(1000).removeClass("selected");
	    $.scrollTo($thisHeading,1000, {offset:0} );
      });
    } else {
      $nextDiv.slideToggle(1000).addClass("selected");
	  $.scrollTo($thisHeading,1000, {offset:0} );
    }
  });
  
  
$('a[rel="external"]').click( function() {
    window.open( $(this).attr('href') );
    return false;
    });  

  $('ul#leasing-sub').hide(); 
  $('ul#property-sub').hide(); 
  $('ul#syndication-sub').hide(); 

  $('a#leasing').mouseover(function() {  
	  $('ul#leasing-sub').toggle('slow'); 
	  $('ul#property-sub').hide('slow'); 
	  $('ul#syndication-sub').hide('slow'); 
  });
  $('a#property').mouseover(function() {  
	  $('ul#leasing-sub').hide('slow'); 
	  $('ul#property-sub').toggle('slow'); 
	  $('ul#syndication-sub').hide('slow'); 
  });
  $('a#syndication').mouseover(function() {  
	  $('ul#leasing-sub').hide('slow'); 
	  $('ul#property-sub').hide('slow'); 
	  $('ul#syndication-sub').toggle('slow'); 
  });
});