// JavaScript Document
$(document).ready(function() {
	$('#menu a').each(function(i,items){
		$(this).animate({backgroundPosition:$(this).attr('posb') + 'px 62px',opacity:1}, 600+i*250,'easeOutBounce');
		$(this).bind('mouseover',function(){
			$(this).stop().animate({backgroundPosition:$(this).attr('posb') + 'px 0px'}, 200);
		}).bind('mouseout',function(){
			$(this).stop().animate({backgroundPosition:$(this).attr('posb') + 'px 62px',opacity:1}, 600,'easeOutBounce');
		});
	});
});

