$(document).ready(function(){ // When mouse rolls over $("#menu li").mouseover(function() { // $(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'}) // $(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeInOutQuint'}) // alert($("#menu li").index(this)); var tmpHeight; tmpHeight = 150; var tmpIndex; tmpIndex = $("#menu li").index(this); switch(tmpIndex) { case 0: tmpHeight = '212px' break; case 1: tmpHeight = '182px' break; case 2: tmpHeight = '212px' break; case 3: // tmpHeight = '242px' tmpHeight = '272px' break; case 4: tmpHeight = '152px' break; } $(this).stop().animate({height:tmpHeight},{queue:false, duration:200, easing: 'easeInOutCubic'}) }); // When mouse is removed $("#menu li").mouseout(function() { // $(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'}) // $(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeInOutQuint'}) $(this).stop().animate({height:'30px'},{queue:false, duration:200, easing: 'easeInOutCubic'}) }); $(function(){ $('#toggleAllSvc').click(function(){ $('#primarySvcWrap').animate({top : '200px'},200); $('#allMenuList').slideDown(220); $('#toggleAllSvc').show(); return false; }); $('#toggleAllSvc_exp').click(function(){ $('#primarySvcWrap').animate({top : '360px'},200); $(this).hide(); $('#toggleAllSvc_exp').show(); $('#allMenuList').slideUp(220); return false; }); }); });