$(document).ready(function(){
  $(".toggle").css({'display':'none'});
  $("a.tab").click(function(){
    
    var content_show = $(this).attr("rel");
    $(".toggle").slideUp("slow");
    
    if($("#"+content_show).is(":hidden")){
      $("#"+content_show).slideDown("slow");
    }
    else {
      $("#"+content_show).slideUp("slow"); 
    }
    return true;
  });
}); 
/*jQuery(document).ready(function(){
	
	jQuery(".day:not(:first)").hide();
	jQuery(".day:first").show();
	
	jQuery(".ctabs a").click(function(){
		stringref = jQuery(this).attr("href").split('#')[1];

		jQuery('.day:not(#'+stringref+')').hide();

		if (jQuery.browser.msie && jQuery.browser.version.substr(0,3) == "6.0") {
			jQuery('.day#' + stringref).show();
		}
		else 
			jQuery('.day#' + stringref).fadeIn();
		
		return false;
	});
	
});*/
