var menu_timer;

jQuery(document).ready( function() {

  if (top.location == 'http://www.elwynsrealestate.com/') { 

    jQuery('.elwyn_nivo_slider').nivoSlider({
      effect: 'fade',
      pauseTime: 5000,
      controlNav: true,
      controlNavThumbs: false,
      pauseOnHover: true,
      keyboardNav: false,
      directionNavHide: false
    });

    jQuery('.banners').html(
      "<table width=980><tr><td width=480 align='center'><a href='http://www.mortgagespei.ca/homepage.asp' target='_new'>"
      + "<img src='http://www.futurewebdesign.net/externalhost/tmg.jpg'></td><td width=480 align='center'>"
      + "<a href='http://www.parkerrealty.pe.ca/Contest/page_2321496.html' target='_new'>"
      + "<img src='http://www.futurewebdesign.net/externalhost/bmw.jpg'></a></td></tr></table><BR>"
    );

  }

  jQuery('.elwyn_menu li')
    .hover( 
      function() { jQuery(this).children('div').show(); },
      function() { elwyn_close_submenu(''); }
    );

  jQuery('.elwyn_submenu div')
    .hover( 
      function() { jQuery(this).children('div').show(); },
      function() { elwyn_close_sub_submenu(''); }
    );

  jQuery('.elwyn_header_container').append(
    "<a href='mailto:info@elwynsrealestate.com'><img src='http://media.point2.com/p2a/htmltext/fc94/fb0c/3ed8/a8f909dbc7630a0987ff/original.gif' "
    + "class='elwyn_email_link'></a>"
  );

} );

function elwyn_close_submenu( open_menu ) {
    jQuery('.elwyn_submenu').hide();
    if ( open_menu ) {
        jQuery('#' + open_menu).show();
    }
}

function elwyn_close_sub_submenu( open_menu ) {
    jQuery('.elwyn_sub_submenu').hide();
    if ( open_menu ) {
        jQuery('#' + open_menu).show();
    }
}

function elwyn_start_timer() {
    menu_timer = startTimeout( "elwyn_close_submenu(''); elwyn_close_sub_submenu('');", 2000 );
}

function elwyn_stop_timer() {
    clearTimeout(menu_timer);
    menu_timer = '';
}



