
// LightBox
$('.autolightbox').lightBox();

// Hide all submenus in the main menu bar (show them only when hovered)
$('#menu ul li ul').hide();
$('#menu ul li a').hover(function() {
	$('ul:first', $(this).parent()).stop().slideDown(100);
});

