$(document).ready(function(){
	
	//extras
	$(".pane-list li").click(function() {
    	window.location=$(this).find("a").attr("href");return false;
    	//window.location=("http://google.com");return false;
	}); 	

	//accordion
		$("#logshow").click(function(event) {
		event.preventDefault();
		$("#logbox").slideToggle();
		});
	//hover
	$(".menu2 a").append("<em></em>");
	
	$(".menu2 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-75"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
	});
	
	//tabs
    $("#tab > ul").tabs();
	
	//slidebox
	// hides the slickbox as soon as the DOM is ready
	// (a little sooner than page load)
 	 $('#slickbox').hide();
 	// toggles the slickbox on clicking the noted link
  	$('a#slick-toggle').click(function() {
	$('#slickbox').toggle(400);
	return false;
  	});
}); //close doc ready