$(document).ready(function(){

	// HEAD
	$('div.head div.new').animate({
		'right':'140px',
	},500).animate({
		'opacity':'0',
		'right':'152px'		
	},2000);

	$('div.head a.usr').hover(function(){
		$(this).find('span').stop(true, true).fadeIn(300);
	},function(){
		$(this).find('span').fadeOut(600);
	});

//
});
