$().ready(function() {
	$(".content").corner("5px");
	$(".video").corner("5px");
	$(".attention").corner("5px");
	$(".main .header .menu a").corner("5px");
	

	
	$(".price").html("<img src='img/loader.gif' alt='" + $(".price").attr("title") + "' title='цена загружается'>");	
	
	var i = 0;
	
	if($(".price").length != 0) getPrice();
		
	function getPrice() {
		current = $(".price:eq("+i+")");
		if(i < $(".price").length) {
			$.post('php/xml.php', 
				{gid:eval(current.attr("id").substr(1))}, 
				function(data){
					
					if (data["wmr"]) {
						current.attr({
							title: current.attr("title") + " за " + Math.ceil(data["wmr"]) + " руб."
						});
						
						current.html("купить за " + Math.ceil(data["wmr"]) + " руб.");
					}
					else {
						current.attr({
							title: "данный товар временно отсутствует",
							href: "#" + current.attr("id").substr(1)
						});
						
						current.html("купить позже");
					}
					i++;
					
					if (i != $(".price").length) getPrice();
					
				}, 
				'json');		
		}
	}

});	
