$(document).ready(function(){ 
	
	$("#table tr:nth-child(even)").addClass("alt");
	
	var strSidebarText = $("#sidebar").text();

	if (strSidebarText.length == "16" || strSidebarText.length == "0") {
		$("body").addClass("fullpage");
	}
	
	
	
	$('#toggleedit').click(function() {
		var $lefty = $('#adminedit');
		$lefty.animate({
			left: parseInt($lefty.css('left'),10) == 0 ?
			-$lefty.width() :
			0
		});
	});
	
	
	$("#slider").easySlider({
		auto: true,
		continuous: true, 
		pause: 5000
	});
		
		
	
}); 
