$(document).ready(function() {
	
	// ----------------Login Panel---------------- //
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("500");
	
	});	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("500");	
	});		
	// Switch buttons 
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
	
	var contentheight = $('#contentbar-i').height() ;
	var sidebarheight = $('#sidebar').height() ;
	if (contentheight <= sidebarheight) {
		$('#contentbar-i').height(sidebarheight + 10);
	}
	
	$('#header ul li:first').addClass('first');
	$('#header ul li:last').addClass('last');
	
});

