/*
	Generic functions for dealing with shirt and shorts customisation.
*/
MCFC.customisation = function () {
	
	return {
		set_price : function (amount) {
			var el = $('#product-main-price .product-price');
			el.text(el.text().replace(/[\d\.]+/, amount+'.00'));
		},
		filter_characters : function(input) {
			return input.replace(/[^a-zA-Z\.'\-, ]+/, '').toUpperCase();
		},
		filter_numbers : function(input) {
			return input.replace(/[^0-9]+/, '');
		},
		embed_swf : function (swf_element) {
        	MCFC.swf.embed(MCFC.customisation.swf.url, swf_element, 535, 450, MCFC.customisation.swf.flashvars, MCFC.customisation.swf.params, MCFC.customisation.swf.attributes);
        }
	};
	
}();