$(document).ready(function() {
    /*
        $("ul.navigation").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
            delay:     400               // 1.2 second delay on mouseout 
        }); 
*/
        $('.hints').focus(function() {
            value=$(this).val();
            $(this).attr("value","");
        });
        $('.hints').blur(function() {
            if($(this).val()=="") {
                $(this).val(value);
            }
        });


  $('table.basket tbody tr:odd').addClass('odd');
  $('table.basket tbody tr:even').addClass('even');
});
