// JavaScript Document $(document).ready(function() { $(".others").animate( {opacity:'hide', height:'hide' },'fast'); $(".clicker").click(function() { $(".clicker").animate({ opacity:'hide', height:'hide' },3000); $(".others").animate({ opacity:['toggle','easeOutBounce'], height:['toggle','easeOutBounce'] }, 3000); }); $(".new_register").animate( {opacity:'hide', height:'hide' },'fast'); $("#registerme").click(function() { $(".login").animate({ opacity:'hide', height:'hide' },2000); $(".new_register").animate({ opacity:['toggle','easeOutBounce'], height:['toggle','easeOutBounce'] }, 3000); }); $(".discounting").animate( {opacity:'hide', height:'hide' },'fast'); $("#haveDiscount").click(function() { $(".no_discount").animate({ opacity:'hide', height:'hide' },2000); $(".discounting").animate({ opacity:['toggle','easeOutBounce'], height:['toggle','easeOutBounce'] }, 3000); }); $("ul.side_nav li").hover(function() { $(this).animate({ 'backgroundColor':'#999999', 'color':'#ffffff' }, 1000); }, function() { $(this).animate({ 'backgroundColor':'#ffffff', 'color':'#333333' }, 1000); }); });