// JavaScript Document
$(window).ready(function(){
	// this runs the business type selection on the client add/edit page
	$('#bagList').addClass('allow');
	$('#bagList .free_bag').click(function(){
		setupLabel();
	});
	setupLabel();


	$('#bagList .free_bag img').click(function(){																					 
		$(this).siblings('input[type=radio]:first').attr('checked', !$('#bagList').is(':checked'));
		setupLabel();
	});
});
	/**
 * changes the 'fancy' checkboxes for bags on the product page
 */
function setupLabel(){
	if($('#bagList .free_bag').length){
		$('#bagList .free_bag').each(function(){
			$(this).removeClass('c_on');
		});

		$('#bagList .free_bag input:checked').each(function(){
			$(this).parent('label').addClass('c_on');
		});
	}
}
