
jQuery(document).ready(function($) {

/* Menu - our developments START
-------------------------------------------------------------- */
  $(".open-developments").hover( 
    function () {
      $("> .up", this).fadeIn('fast');
    },
    function () {
      $("> .up", this).fadeOut('fast');
    }
  );
 /* Menu - our developments END
-------------------------------------------------------------- */

/* Menu - fractional ownership START
-------------------------------------------------------------- */
  $(".open-fractional-ownership").hover( 
    function () {
      $("> .up", this).fadeIn('fast');
    },
    function () {
      $("> .up", this).fadeOut('fast');
    }
  );
 /* Menu - fractional ownership END
-------------------------------------------------------------- */

/* Menu - about absolute START
-------------------------------------------------------------- */
  $(".open-about-absolute").hover( 
    function () {
      $("> .up", this).fadeIn('fast');
    },
    function () {
      $("> .up", this).fadeOut('fast');
    }
  );
 /* Menu - about absolute END
-------------------------------------------------------------- */

/* Absolute World site switcher START
-------------------------------------------------------------- */
  $(".open").hover( 
    function () {
      $("> .up", this).fadeIn('fast');
    },
    function () {
      $("> .up", this).fadeOut('fast');
    }
  );
 /* Absolute World site switcher END
-------------------------------------------------------------- */

  //Open page externaly
  $(function() {
		$('a[rel=external]').attr('target', 'blank');
	});
	
	// Tooltips
  $(".community").hover(
    function () {
      $('.m_mem').fadeIn('fast');
    }, 
    function () {
      $('.m_mem').fadeOut('fast');
    }
  );
  $(".rss-twitter").hover(
    function () {
      $('.t_mem').fadeIn('fast');
    }, 
    function () {
      $('.t_mem').fadeOut('fast');
    }
  );
  
  
  
});

