$(document).ready(function() {
	setTimeout(function() {

		// Sidebar
		$('#sidebar .title span').click(function() {
			if ($(this).hasClass('collapsed')) {
				$(this).parents('.box').children('.content').slideDown('medium');
			} else {
				$(this).parents('.box').children('.content').slideUp('medium');
			}
			$(this).toggleClass('expanded collapsed');
		});

	}, 250);

	// Top menu
	$("#menu-topmenu > li").hover(

		function(){
			$(this).children('ul').show();
		},

		function(){
			$(this).children('ul').hide();
		}
	);
});
