jQuery(document).ready(close);
function tabslide($x,$y)
{
if($y=="1")
{
jQuery(".tab").slideUp("slow");
jQuery("#t"+$x).slideDown("slow");
jQuery('.cstabs li a').attr("id", "");
jQuery('.cstabs .'+$x).attr("id", "selected");
}
if($y=="2")
{
jQuery(".tab").hide("slow");
jQuery("#t"+$x).show("slow");
jQuery('.cstabs li a').attr("id", "");
jQuery('.cstabs .'+$x).attr("id", "selected");
}
if($y=="3")
{
jQuery(".tab").hide();
jQuery("#t"+$x).show();
jQuery('.cstabs li a').attr("id", "");
jQuery('.cstabs .'+$x).attr("id", "selected");
}
}
function close()
{
jQuery(".tab").hide();
jQuery("#t1").show();
jQuery('.cstabs .1').attr("id", "selected");
}

