jQuery('.tab-control li:not(.tab-label) a').live('click', function(e) {

	jQuery('.tab-control li.active').each(function() {
		jQuery(this).removeClass('active');
		jQuery( '#' + jQuery('a', this).attr('rel') ).hide();
	});

	jQuery(this).closest('li').addClass('active');
	jQuery('#' + jQuery(this).attr('rel')).show();

	if (typeof(mporaTabCallback) != 'undefined') mporaTabCallback(jQuery(this).attr('rel'));
	
	initImageLoad();
	
	e.preventDefault();
});
