function tab_action(ptab,pcontent,pclass)
{
	$(ptab).children().mouseover(function(){
		var tab=$(this);
		tab_index=tab.prevAll().length;
		$(ptab).children().removeClass(pclass);
		tab.addClass(pclass);

		$(pcontent).children().hide();
		$(pcontent).children().eq(tab_index).show();
	});

}
var show_desc=function(){
	if($('#cut').css('display')=='none')
		$('#cut').show();
	else
		$('#cut').hide();
}
