
$(document).ready(function(){
    $("ul.sf-menu1").superfish({
        animation: {height:'show'},   // slide-down effect without fade-in
        delay:     600               // 1.2 second delay on mouseout
    });

    $("ul.sf-menu").superfish({
        animation: {height:'show'},   // slide-down effect without fade-in
        delay:     1200               // 1.2 second delay on mouseout
    });

    MM_preloadImages('/img/topNav/topNavHoverInt_01.jpg','/img/topNav/topNavHoverInt_02.jpg','/img/topNav/topNavHoverInt_03.jpg','/img/topNav/topNavHoverInt_04.jpg','/img/topNav/topNavHoverInt_05.jpg','/img/topNav/topNavHoverInt_06.jpg')

    $("a.menu").mouseout(
      function() {
        MM_swapImgRestore();
      }
    );
    $("a#home").mouseover(
      function() {
        MM_swapImage('HOME','','/img/topNav/topNavHoverInt_01.jpg');
      }
    );
    $("a#santafe").mouseover(
      function() {
        MM_swapImage('SANTA_FE_PROPERTIES','','/img/topNav/topNavHoverInt_02.jpg',1)
      }
    );
    $("a#taos").mouseover(
      function() {
        MM_swapImage('TAOS_PROPERTIES','','/img/topNav/topNavHoverInt_03.jpg',1)
      }
    );
    $("a#commercial").mouseover(
      function() {
        MM_swapImage('COMMERCIAL','','/img/topNav/topNavHoverInt_04.jpg',1)
      }
    );
    $("a#specials").mouseover(
      function() {
        MM_swapImage('SIGN_UP','','/img/topNav/topNavHoverInt_05.jpg',1)
      }
    );
    $("a#contact").mouseover(
      function() {
        MM_swapImage('CONTACT','','/img/topNav/topNavHoverInt_06.jpg',1)
      }
    );
    //$("a[rel='gallery']").colorbox({photo: "true", maxWidth: "900px", maxHeight: "900px"});
    //$("a.photobox").colorbox({photo: "true"});
    //$("a.mapbox").colorbox({iframe: "true", width: "900px", height: "800px"});
    $("a.mapbox").click(function() {
        this.target = "_blank";
    });

    // sort-by select menu
    $("select.sorter").change(function() {
      $("select.sorter option:selected").each(function() {
        $(location).attr('href', $(this).attr('value'));
      });
    });

    // goto select menu ("Jump To")
    $("select#goto").change(function() {
      $("select#goto option:selected").each(function() {
        if ($(this).attr('value') != '') {
          $(location).attr('href', '/vrentals/view/' + $(this).attr('value'));
        }
      });
    });


/* ajax loading function */
		/*
    jQuery.ajaxSetup({
      beforeSend: function() {
         $('#loader').show()
      },
      complete: function(){
         $('#loader').hide()
      },
      success: function() {}
    });
		*/
});

