// JavaScript Document
$(document).ready(function(){  
  
    //When mouse rolls over  
    $(".rainbowmenu .long").mouseover(function(){  
        $(this).stop().animate({width:'450px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    }); 
	
    $(".rainbowmenu .shortermenu").mouseover(function(){  
        $(this).stop().animate({width:'300px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    }); 

    //When mouse is removed  
    $(".rainbowmenu .long").mouseout(function(){  
        $(this).stop().animate({width:'75px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });
	
    $(".rainbowmenu .shortermenu").mouseout(function(){  
        $(this).stop().animate({width:'75px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    }); 


});  