jQuery(document).ready(function() {
	jQuery('#productLinks .productLink').each(function() {
    
		jQuery(this).click(function() {
			var info = jQuery(this).attr('id').split('-');
			productTabs_show(info[1], info[0]);

			return false;
		});
	});
});

function productTabs_show(tab,post){
	jQuery('.productTab').each(function() {
		jQuery(this).removeClass('activeTab');
	});
	jQuery('#productTab-'+tab).addClass('activeTab');

	jQuery('#productLinks a').each(function() {
		jQuery(this).removeClass('activeLink');
	});
	jQuery('#productLink-'+tab).addClass('activeLink');

	self.focus();
}


