$(document).ready( function() 
{
	base_url = $("base").attr("href");
		
    //$('#gallery a').lightBox(); // Select all links in object with gallery ID
	
	$('#admin').click(function()
	{
		window.location = base_url+"admin";
		return false;
	});
	
	// sidebar > Expand or collapse:
	$("#sidebar_content > .ulwrap > .box_title").click(function() {
		$(this).find("+ .box_content").slideToggle("slow");
	});
    
});