function expOnReady() {
   $("div.hover_me").hover(
    function() {
     if ($(this).children("div.drop").is(":animated") === false ) {
      $(this).children("div.drop").slideDown();
      }
    },
    function() {
     $(this).children("div.drop").fadeOut();
    }
   );
   /*Basket*/
   $("a.show_basket").click(function() {
    if ($("#drop_table").css('display') == 'none'){
    $("#drop_table").slideDown('slow');
    $("a.show_basket").css('background-image','url(/images/tr_up.jpg)');
    $("a.show_basket").html(hideBackpackStr);
    }
    else{
    $("#drop_table").slideUp('slow');
    $("a.show_basket").css('background-image','url(/images/tr_down.jpg)');
    $("a.show_basket").html(showBackpackStr);
    }
    }
    )


   }
$(document).ready(expOnReady);

