$(document).ready(function(){
	toggleSubmenu();
	setLightbox();
});
function toggleSubmenu() {
	$('#menu2 ul li').hover(function(){
		$(this).find('ul.sub').show();
		$(this).children('a').toggleClass('hover');
	},function(){
		$(this).find('ul.sub').hide();
		$(this).children('a').toggleClass('hover');
	});
}
function setLightbox() {
	$($("a[rel='lightbox']")).lightBox();
}
