var ProductTools = {
	'bindEvents' : function() {
		//$('select#quantity').livequery('change', this.recalculatePrice);
		$('.product_thumb').click(this.changeImage);
	},

	'recalculatePrice' : function() {
		var price = parseFloat($('#product_price').html().substring(2));
		$('#product_surchange').html('$ ' + (price * $(this).attr('value')));
	},
	
	'changeImage' : function() {
		$('#tpl-product-image').attr('src', '/files/image/productfull/' + $(this).attr('rel'));
		$('.product_thumb').removeClass('active');
		$(this).addClass('active');
		return false;
	}

};

$(document).ready(function() {
	ProductTools.bindEvents();
});
