$(function() {
	if ($('#sImgs li img').length > 1) {
		$('#sImgs li img').bind('click', function() {
			$('#sImgs li').removeClass('cur');
			$(this).parent().addClass('cur');
			$('#storeIco img').attr('src', $(this).attr('src').replace('100_77_', ''));
		})
	}
});

function ajaxFeedback() {
	$.ajax({
		type : 'POST',
		url : '/stores/ajax_feedback',
		data : $('#feedback').serialize(),
		dataType : 'xml',
		success : function(xml) {
			var code = $(xml).find('code').text();
			if (code == 'OK') {
				alert('商品评论成功，管理员审核后即能显示！');
				$('#feedback textarea').val('');
				return true;
			} else {
				alert(code);
				return false;
			}
		},
		error : function(xml, err) {
			
		}
	});
}
