jQuery(function() {
	jQuery('.tab').click(function() {
		jQuery('.panel').hide();
		jQuery('#panel_'+this.id.substr(4)).show();
		jQuery('.tab img').each(function () { this.src = this.src.replace('sel.jpg', 'ff.jpg'); });
		jQuery('img', this).each(function () { this.src = this.src.replace('ff.jpg', 'sel.jpg'); });
		return false;
	})
});
