$(document).ready(function() {
						   
    var config = {    
     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
     interval: 200, // number = milliseconds for onMouseOver polling interval    
     over:  function () {
        $(this).children('ul').toggle();
      },  // function = onMouseOver callback (REQUIRED)    
     timeout: 500, // number = milliseconds delay before onMouseOut    
     out: function () {
        $(this).children('ul').toggle();
      }    
	};
	
	$('#mainMenu > li').hoverIntent(config);
	$("#mainMenu > li").hover(
		function(){
			$(this).children("ul").css("min-width",$(this).width()+"px");
			$(this).find("li").css("width",$(this).children("ul").width()+"px");
		},
		function(){});
	
	$('#photoCol a.zoom').lightBox({fixedNavigation:false});
});