//*Switcher*/

jQuery(document).ready(function($) {
  $("#open").hover( 
    function () {
      $(".up", this).fadeIn('fast');
    },
    function () {
      $(".up", this).fadeOut('fast');
    }
  ); 

});