$(".buynow").live('click',function(){
	$("#subjoinpromo").val('2');
	$("#sdSelPayment").click();
});

$("#sjoin").live('click',function(){
	$("#subjoinpromo").val('1');
	$("#sdSelPayment").click();
});

function checkCombination() {
	var s = '';
	$("#frmSU").find(":select[name*='group']").each(function(){
		//$("#frmSU").find(":input[name*='att']").each(function(){																										
		s += ($(this).val()) + ',';//$(this).val($(this).siblings(".lblqty").html());
	});
	s = s.substr(0,s.length-1);
	
	$("#cargando").fadeIn();
	
	$.ajax({
		type: "POST", url: "checkcombo.php", data: "pid="+$("#pid").val()+"&aid="+s,
		complete: function(data){
			//alert(data.responseText);
			if(data.responseText.indexOf('label') >= 0) {
				$("#sjoin").show();
				$("#sdBuyNow").show();
				$("#combo").val(data.responseText.substring(0, data.responseText.indexOf('-')));
				$("#dUnits").html(data.responseText.substr(data.responseText.indexOf('-')+1));
				
			}
			else if(data.responseText == '---') {
				$("#sjoin").show();
				$("#sdBuyNow").show();
			}
			else {
				$("#sjoin").hide();
				$("#sdBuyNow").hide();
				$("#combo").val("");
				$("#dUnits").html(data.responseText);
			}
			
			$("#cargando").fadeOut();
		}
	});
}
