jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery(".sk_tabIndex a").each(function(){
		setW = jQuery(this).width() + 8;
		jQuery(this).css({ display: "block", width: setW+"px" });
	});
	jQuery(".sk_tabIndex a").each(function(i){
		jQuery(this).click(function(){
			selectSet(this, i);
		});
	});
});

function selectSet(obj, id) {
	jQuery(".sk_tabIndex a").each(function(i){
		jQuery(this).css({ fontWeight: "normal" });
	});
	jQuery(obj).css({ fontWeight: "bold" });
	jQuery(".sk_selectSet").each(function(){
		jQuery(this).hide();						 
	});
	jQuery("#sk_div2tab_0"+id).show();
}