$(function(){
	$('#SellYourClubs_ClubType').change(function(){
		$('#SellYourClubs_FinalRow,#SellYourClubs_ModelsRow,,#SellYourClubs_ManufacturerRow,#AddClubToQuoteButton').fadeOut();
		$('#SellYourClubs_Quantity').val(1);
		$('#SellYourClubs_Value').html('--');
		if(this.value != ''){
			if(this.value == 'Iron set'){
				$('#SellYourClubs_Quantity').hide();
				$('<span id="SetOfClubsQuantity">1 Full Set (8 clubs)<input type="hidden" name="quantity" value="1"/></span>').insertAfter('#SellYourClubs_Quantity');
			}else{
				$('#SetOfClubsQuantity').remove();
				$('#SellYourClubs_Quantity').show();
			}
			$('#SellYourClubs_Loading').fadeIn();
			$.ajax({
				type: 'POST',
				url: '/ajax/sell/get_manufacturers.php',
				data: 'club_type=' + this.value,
				success: function(data){
					$('#SellYourClubs_Loading').fadeOut();
					$('#SellYourClubs_Manufacturer').html(data);
					$('#SellYourClubs_ManufacturerRow').fadeIn();
				}
			});
		}
	});
	
	$('#SellYourClubs_Manufacturer').change(function(){
		$('#SellYourClubs_FinalRow,#SellYourClubs_ModelsRow,#AddClubToQuoteButton').fadeOut();
		$('#SellYourClubs_Quantity').val(1);
		$('#SellYourClubs_Value').html('--');
		if(this.value != ''){
			$('#SellYourClubs_Loading').fadeIn();
			$.ajax({
				type: 'POST',
				url: '/ajax/sell/get_manufacturer_models.php',
				data: 'club_type=' + $('#SellYourClubs_ClubType').val() + '&manufacturer=' + this.value,
				success: function(data){
					$('#SellYourClubs_Loading').fadeOut();
					$('#SellYourClubs_Models').html(data);
					$('#SellYourClubs_ModelsRow').fadeIn();
				}
			});
		}
	});
	
	$('#SellYourClubs_Models').change(function(){
		$('#SellYourClubs_FinalRow,#AddClubToQuoteButton').fadeOut();
		$('#SellYourClubs_Quantity').val(1);
		$('#SellYourClubs_Value').html('--');
		if(this.value != ''){
			$('#SellYourClubs_Loading').fadeIn();
			$.ajax({
				type: 'POST',
				url: '/ajax/sell/get_final_types.php',
				data: 'club_type=' + $('#SellYourClubs_ClubType').val() + '&manufacturer=' + $('#SellYourClubs_Manufacturer').val() + '&model=' + this.value,
				success: function(data){
					$('#SellYourClubs_Loading').fadeOut();
					$('#SellYourClubs_ClubId').html(data);
					$('#SellYourClubs_FinalRow').fadeIn();
				}
			});
		}
	});
	
	$('#SellYourClubs_ClubId').change(function(){
		var value = '--';
		$('#AddClubToQuoteButton').fadeOut();
		if(this.value != ''){
			var base_value = $(this).find('option:selected').attr('rel');
			if(base_value > 0){
				var percentage = $('#SellYourClubs_Condition :checked').val();
				if(! (percentage > 0) ){
					percentage = 1;
				}
				value = Number(base_value * percentage).toFixed(2);
				$('#AddClubToQuoteButton').fadeIn();
			}
		}
		$('#SellYourClubs_Value').html(value);
	});
	
	$('#SellYourClubs_Condition input').click(function(){
		var value = '--';
		var base_value = Number($('#SellYourClubs_ClubId option:selected').attr('rel'));
		if(base_value > 0){
			var percentage = $('#SellYourClubs_Condition :checked').val();
			if(! (percentage > 0) ){
				percentage = 1;
			}
			value = Number(base_value * percentage).toFixed(2);
			$('#AddClubToQuoteButton').fadeIn();
		}else{
			$('#AddClubToQuoteButton').fadeOut();
		}
		$('#SellYourClubs_Value').html(value);
	});
	
	$('select.updateQuoteItemsSelect').change(function(){
		$('#UpdateQuoteItemsForm').append("<input type='hidden' name='quantity["+$(this).attr('rel')+"]' value='"+this.value+"' />");
	});
	
});