// JavaScript Document
function tabs(Ttitle,Tbody,TactCls,mtype,mtypem)
{
	if(mtype=null)mtype="fadeIn";
	if(mtypem=null)mtypem="fast";
	jq(Ttitle).each(function(index,e){
		jq(e).mouseover(
			function(){
				if(jq(e).hasClass(TactCls))return;
				jq(Ttitle).removeClass(TactCls);
				jq(e).addClass(TactCls);
				c=jq(Tbody).length;
				//eval("jq(\""+Tbody+"\").hide().eq("+index+")."+mtype+"(\""+mtypem+"\")");
				jq(Tbody).hide().eq(index).fadeIn("fast");
			}
		);
	});
}
