jQuery(document).ready(function(){

    //When mouse rolls over
    jQuery(".menu_top li").mouseover(function(){
        jQuery(this).children('a').stop().animate({marginTop:'-4px'},{queue:false, duration:900, easing:'easeOutElastic'});
        jQuery('#linkbar').stop().animate({top:'-8px'},{queue:false, duration:300, easing:'easeOutCubic'});
		//jQuery("#" + this.className + '_logo').stop().animate({width:'190px'},{queue:false, duration:600, easing: 'easeOutBounce'}).fadeTo(600, 0.5);
    });

    //When mouse is removed
    jQuery(".menu_top li").mouseout(function(){
        jQuery(this).children('a').stop().animate({marginTop:'0px'},{queue:false, duration:900, easing:'easeOutElastic'});
        jQuery('#linkbar').stop().animate({top:'0px'},{queue:false, duration:300, easing:'easeOutCubic'});
		//jQuery("#" + this.className + '_logo').stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'}).fadeTo(600, 0);
    });

});
