/*
Codersstuff.com CSTABS 1.1
http://codersstuff.com

Detail : http://codersstuff.com/jquery-ile-tab-uygulamasi-cstabs
Example : http://codersstuff.com/wp-content/uploads/demo/cstabs
Date : 25.01.2009

Berkay YILDIZ  

*/

jQuery(document).ready(close);

function tabslide($x,$y)
{

if($y=="1")
{
jQuery(".tab").slideUp("slow");
jQuery("#tab"+$x).slideDown("slow");
jQuery('.tabs li a').attr("id", "");
jQuery('.tabs .'+$x).attr("id", "tabs-selected");
}

if($y=="2")
{
jQuery(".tab").hide("slow");
jQuery("#tab"+$x).show("slow");
jQuery('.tabs li a').attr("id", "");
jQuery('.tabs .'+$x).attr("id", "tabs-selected");
}


if($y=="3")
{
jQuery(".tab").hide();
jQuery("#tab"+$x).show();
jQuery('.tabs li a').attr("id", "");
jQuery('.tabs .'+$x).attr("id", "tabs-selected");
}


}

function close()
{
jQuery(".tab").hide();
jQuery("#tab1").show();
jQuery('.tabs .1').attr("id", "tabs-selected");
}

