$(function() {
        $('.lightbox').fancybox();
        $(".various6").fancybox({
          'width':'800px',
          'height': '400px',
        	    'padding'           : 0,
                'autoScale'     	: false,
                'transitionIn'		: 'none',
        		'transitionOut'		: 'none'
        	});        
    });

(function($){
				
				//cache nav
				var nav = $("#topNav");
				
				//add indicator and hovers to submenu parents
				nav.find("li").each(function() {
					if ($(this).find("ul").length > 0) {
						

						//show subnav on hover
						$(this).mouseenter(function() {
							$(this).find("ul").stop(true, true).slideDown();
						});
						
						//hide submenus on exit
						$(this).mouseleave(function() {
							$(this).find("ul").stop(true, true).slideUp();
						});
					}
				});
			})(jQuery);

			
			
