/**
 * @author kkopachev
 */
 
function showProductPhoto(img, id) {
	
	if ( !img || !id) {
		return;
	}
	
	$('#product_image').attr('src', 
		$('#photo_span_' + id).text()
	);
	
	$('#product_images img.current').removeClass('current');
	
	$(img).addClass('current');
	
}

function addToCart(id) {
	
	if ( !id ) {
		return;
	}
	
	JsHttpRequest.query("/product?request_mode=ajax", {
			'product_id'  : id,
			'ajax_action' : 'add_to_cart',
			'form'		  : document.getElementById('cart_add_form')
		},

		function(result, errors) {

			if (errors) {
				
				if (production_flag) {
				} else {
					$('#error').html(errors);
				}
				
			} else if (result) {
				
				if (result.header_content) {
					$('#cart_contents').html(result.header_content);
					$('#product_params').html(result.product_content);
					$('#add_result_text').show();
					$('#add_button').hide();
				} else {
					//					
				}
				
			}
		}, true);
	
}