var tabber = {
	
	init : function()
	{
		tabber.tabs = $('#section_tabs a');
		tabber.tabs.click(tabber._toggle);
		tabber.layers = $('#day1,#day2,#day3,#day4,#day5');
	},
	
	_toggle : function()
	{		
		var target = $(this).attr('rel');
		var button = $(this);
		
		$(tabber.tabs).each(
			function()
			{
				if( button == this )
					$(this).addClass('active');
				else
					$(this).removeClass('active');
			}
		);
		
		$(tabber.layers).each(
			function()
			{
				if( $(this).attr('id') == target )
					$(this).fadeIn('fast');
				else
					$(this).fadeOut('fast');
			}
		);
		return false;
	}
}
$(document).ready(tabber.init);