$(document).ready(function(){        $(".constructor-select a").each(function(){        	var id = $(this).attr("id");
        	$(this).click(function(){                        open_items(id);
                        return false;        	});        });});

var no_image = true;

function open_items(id) {	$(".constructor-select a").removeClass("active");	$("a#" + id).addClass("active");
	$(".constructor-items div.list").css("display", "none");	$(".constructor-items div#view-" + id).css("display", "block");
}

function set_image(category, image) {	if (no_image) init_image();

	$.getJSON('/ajax.php', {item_id: image}, function(data){		if (data.image.length > 0) {			if (category == 1) $("#im-main").css("background", "url(" + data.image + ") center center repeat-x");
			if (category == 2) $("#im-main").html("<img src='" + data.image + "' border='0' />");
			if (category == 4) $("#im-nak").html("<img src='" + data.image + "' border='0' />");
                }
		else {			alert("Изображение отсутствует.");
			if (category == 1) $("#im-main").css("background", "s");
			if (category == 2) $("#im-main").html("");
			if (category == 4) $("#im-nak").html("");
                }		$("#inf" + category).html(data.info);	});}

function init_image() {	$(".constructor-image").html("<center><table width='300px' border='0' cellspacing='0' cellpadding='0'><tr><td><img src='/anima/1x1.gif' width='1px' height='1px' border='0px' /></td><td><img src='/anima/1x1.gif' width='100px' height='1px' border='0px' /></td><td><img src='/anima/1x1.gif' width='200px' height='1px' border='0px' /></td></tr><tr><td><img src='/anima/1x1.gif' width='1px' height='100px' border='0px' /></td><td id='im-nak'></td><td id='im-main'>&nbsp;</td></tr></table></center>");
	no_image = false;}

function putIntoCart(id) {	var col = $("#item" + id + "color").val();	return '/catalog/cart' + id + '/' + col + '/c1.html';}
