$(document).ready(function() {
	//var showImages = true;

	/*
	$(".cart .product td").mouseover(function() {
		$(this).parent().find("td").css("background-color", "#eee");
	}).mouseout(function() {
		$(this).parent().find("td").css("background-color", "#fff");
	});
	*/

	/*
	$(".delete").each(function(button) {
		$(this).confirmDelete = false;
		$(this).originalText = $(this).val();

		$(this).click(function(e) {
			e.preventDefault();

			if($(this).confirmDelete) {
				$(this).parent().submit();
			}
			else {
				$(this).val("Säker?");
				$(this).css("color", "#f00");
				$(this).confirmDelete = true;
				$(this).turnBack = function() {
					$(this).val($(this).originalText);
					$(this).css("color", "#222");
					$(this).confirmDelete = false;
				};
				$(this).turnBack().delay(2500);
			}
		});
	});*/

	/*
	$("#toggleCartImages").click(function(e) {
		e.preventDefault();

		if(!showImages) {
			$(".image").show();
			$("#toggleCartImages").html("Dölj bilder");
			showImages = !showImages;
		}
		else {
			$(".image").hide();
			$("#toggleCartImages").html("Visa bilder");
			showImages = !showImages;
		}
	});
	*/

});
