var del_hash = '';
$(document).ready(function(){ 
	var img1 = new Image();
	var img2 = new Image();
	var img3 = new Image();
	img1.src = "/img/textarea_bg.jpg";
	img2.src = "/img/b_yes.gif";
	img3.src = "/img/b_no.gif";
});
function confirmDel(hash) {
	if ($(".confirm_del").css('position') == 'absolute') {
		//alert ();
		scrollTo(0,window.event.y);
		$(".confirm_del").css({'top' : window.event.y - 50 + "px"}); 
	}
	del_hash = hash;
	$(".cover").css({'height': document.getElementById('content').offsetHeight + "px", 'display': 'block'});
	$(".confirm_del").fadeIn(500);
	return false;
}
function del_no() {
	$(".confirm_del").fadeOut(500, function() {
		$(".cover").css({'display': 'none'});
	});
	del_hash = '';
}
function del_yes() {
	$.post("/controllers/ajax.php", { act: "del_from_cart", hash: del_hash }, function (res) {
		if (res) {
			$(".confirm_del").fadeOut(500, function () {
				location.href = "/cart";
			});
		}
		else aler("O.o");
	});
}

