jQuery.noConflict();

	function tab_action(ptab,pcontent,pclass)
	{
		jQuery(ptab).children().mouseover(function(){
			var tab=jQuery(this);
			tab_index=tab.prevAll().length;
			jQuery(ptab).children().removeClass(pclass);
			tab.addClass(pclass);
			jQuery(pcontent).children().hide();
			jQuery(pcontent).children().eq(tab_index).show();
	});
}

