// JavaScript Document
jQuery(document).ready(function(){
	
	jQuery(this).delay(500,function(){
		
		//Show the elements	
		jQuery("a#current span").stop().animate({width:'50px'}, {queue:false, duration:800, easing: 'easeOutCirc'});
		
	});
    
});
