$(document).ready(function(){
	Cufon.replace('.infos th');
	Cufon.replace('.menu li', { hover: true});
	Cufon.replace('.content .title', { hover: true});
});
function trimite(){
	var data = {
		nume:		$('#nume').val(),
		subiect:	$('#subiect').val(),
		email:		$('#email').val(),
		mesaj:		$('#mesaj').val(),
		ajax:		1
	};
	$.post('contact.php',data,function(data){
		$('#msg').fadeOut(100);
		$('#msg').text("");
		$('#msg').html(data);
		$('#msg').fadeIn(500);
	});
	return false;
}
function auth(){
	var data = {
		login:		'login',
		user:		$('#user').val(),
		parola:		$('#parola').val(),
		ajax:		1
	};
	$.post('admin.php',data,function(data){
		if(data!='good'){
			$('#msg').fadeOut(100);
			$('#msg').text("");
			$('#msg').html(data);
			$('#msg').fadeIn(500);
			$(".login table").shake(3,50,1000);
		}else{
			window.location.href="admin.php?redir=1";
		}
	});
	return false;
}
