$(document).ready(function(){
    $('.xhover').mouseover(function(){
    	$(this).addClass('hover');
    	$(this).mouseout(function(){
    		$(this).removeClass('hover');
    	});
    });
    $('a.fancy').fancybox({
    	'overlayColor'	:	'#000'
    });
});
function confirmEmail(element){
	element.html('обработка…');
	element.load("/profile/confirm_send");
}
function profileDelAvatar ()
{
	$('#profile-edit .avatar li a').parent().remove();
	$.post('/profile/delavatar', function(){
		$('#profile-edit .avatar img').attr('src', $('#profile-edit .avatar img').attr('src')+'&'+Math.random());
	});
}

