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