function onColorClicked(obj)
{
	jQuery(".product_image").attr('src',jQuery(obj).attr('thumb'));
	jQuery(".product_image").parent().attr('href', jQuery(obj).attr('imgurl'));
	jQuery('.color-bar .selected').removeClass('selected');
	jQuery(obj).addClass('selected');
}
