var hovered = false;
function pop() {
	hovered = true;
	var y = document.getElementById("drop").offsetTop;
	var x = document.getElementById("drop").offsetLeft;
	var list = document.getElementById("dropdown");
	list.style.display = "block";
	list.style.position = "absolute";
	list.style.left = x + "px";
	list.style.top = y + "px";
}
function unpop(){
	hovered = false;
	setTimeout("killit()", 500);
}

function killit() {
	if (!hovered) {
		var list = document.getElementById("dropdown");
		list.style.display = "none"
	}
}
function hover(){
	hovered = true;
	var list = document.getElementById("dropdown");
	list.style.display = "block";
}
$(function() {
	$('.pic a').lightBox({fixedNavigation:true});
});
