$(function() {
	$('a#gallery').lightBox();
});

var timer = '';

$(document).ready(function() {
	
	timer = setTimeout(sideBar, 500);

});

function sideBar() {
	clearTimeout(timer);
	var p = $("#content").outerHeight()-60;
	$("#sidebar").height(p);
}