jQuery(function() {	
	jQuery('select.murblesColorSel').change(function() {
		jQuery('#murbles_icon').css("background-color", jQuery('select.murblesColorSel option:selected').attr("title"));
	});
	
	jQuery('select.set2ColorSel').change(function() {
		jQuery('#murble_icon1').css("background-color", jQuery('select.set2ColorSel option:selected').attr("title"));
	});
	
	jQuery('select.murbleColorSel').change(function() {
		jQuery('#murble_icon2').css("background-color", jQuery('select.murbleColorSel option:selected').attr("title"));
	});
	
	jQuery('select.bagColorSel').change(function() {
		jQuery('#bag_icon').css("background-color", jQuery('select.bagColorSel option:selected').attr("title"));
	});

	
});

function resetForm() {
	jQuery('#murbles_icon').css("background-color", "#ffffff");
	jQuery('#murble_icon1').css("background-color", "#ffffff");
	jQuery('#murble_icon2').css("background-color", "#ffffff");
	jQuery('#bag_icon').css("background-color", "#ffffff");
}
