// ığ

$(function() {
	$("#header .header h1").click(function() {
		document.location.href = "/";
	});
});

function lightbox(x)
{
	$("#coffee .header").css("background", "url(images/coffee/header-" + x + ".png) 0 0 no-repeat");
	$("#coffee").css({
		"top"	: ($(window).height() - 535) / 2,
		"left"	: ($(window).width() - 616) / 2
	});
	$("#coffee").show();
	$("#coffee .top").live("click", function() {
		$("#coffee").hide();
	});

	$("#coffee .form a.send").live("click", function() {
		var name = $("#frmName").val();
		var email = $("#frmEmail").val();
		var phone = $("#frmPhone").val();
		var em = "";

		name = name.replace(/ /g, "¤");

		$.ajax({
			url			: "coffee.php",
			type		: "POST",
			data		: "name=" + name + "&email=" + email + "&phone=" + phone,
			dataType	: "html",
			success		: function(xml) {
				xml = xml.replace(/%/g, '\n');
				if (xml == '1') {
					$("#coffee").hide();
					alert('Teşekkürler...');
				} else {
					alert(xml);
				}
			}
		});
		return false;
	});
}
