 $(document).ready(function(){
	$("#sendmail").click(function(){
		//alert('radi');
		var mail = $("#mail").val();
		var saved = $("#moji_oglasi").html();
		//saved = saved.replace('"', '\"');
		//saved = saved.replace("'", "\'");
		var valid='';
		
		if (!mail.match(/^([a-z0-9._-]+@[a-z0-9._-]+\.[a-z]{2,4}$)/i)) {
			valid = 'invalid Email';
		}
		if (valid!='') {
			$("#response").fadeIn("slow");
			$("#response").html("greška:"+valid);
		}
		else {
			var datastr ='&mail=' + mail + '&saved=' + escape(saved);
			$("#response").css("display", "block");
			$("#response").html("<img src='images/ajax-loader.gif' alt='' />");
			$("#response").fadeIn("slow");
			setTimeout("send('"+datastr+"')",2000);
		}
		return false;

	});
});
function send(datastr){
	$.ajax({	
		type: "POST",
		url: "./mail.php",
		data: datastr,
		cache: false,
		success: function(html){
		$("#response").fadeIn("slow");
		$("#response").html(html);
		setTimeout('$("#response").fadeOut("slow")',3000);
		setTimeout('$("#mailobrazac").slideUp("slow")',2000);
	}
	});
}

