$(function() {


	$("#main-nav li.parent").hoverIntent(hoverOn, hoverOff);
	function hoverOn() { $(this).children("ul").fadeIn(); }
	function hoverOff() { $(this).children("ul").fadeOut(); }
	
	$("#main-nav li.parent ul li.parent-two").hoverIntent(hoverOn, hoverOff);
	function hoverOn() { $(this).children("ul").fadeIn(); }
	function hoverOff() { $(this).children("ul").fadeOut(); }
	
	$('.gallery a').lightBox();
	


});

