//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
$(document).ready(function()
{
	

	//for the third menu, it uses easing plugin
    $('#nav2 li a').hover(function()
	{
		var offset=$(this).position();
        var thiswidth =$(this).width();
		var diff=(thiswidth-50)/2
        $('#nav2 li.ybg').stop().animate({left:offset.left+diff+"px"},400,function(){ 
			$(this).animate({left:offset.left+1,width:thiswidth+"px"},100,function(){$(this).animate({height:"37px"},150); })
																				
        });    
	},
	function()
	{
		$('#nav2 li.ybg').stop().animate({height:"4px"},150,function(){
            $(this).animate({left:"40px",width:"50px"},300,'easeOutBounce');
        });    
	}); 
    
});

