$(document).ready(function() {
	// slide down subnav
	
	
	$("#main_nav ul.mainCMSListMenuUL li").mouseover(function() {			
		var $currLink = $(this);
		//stop other animations
		$currLink.children("#main_nav .subCMSListMenuUL").stop(true, true);
		//set active class to correct menu item
		if (!($currLink.children("a").hasClass("active"))) {
			$("a.active").removeClass("active");
			$currLink.children("a").addClass("active");			
		}
		if ($("#main_nav .subCMSListMenuUL").is(":visible"))
		{
			if (!($currLink.children("#main_nav .subCMSListMenuUL").is(":visible"))) {
				if (!($currLink.parent("#main_nav .subCMSListMenuUL").length > 0)) {
					//if there are visible submenus that are not children of the menu item that is being hovered, hide those menus
					$("#main_nav .subCMSListMenuUL").slideUp("slow");
				}
			}
		}
		if ($("#sub_nav").is(":visible")) {
		    $("#sub_nav").slideUp("slow");
		}
		//slide down the submenu
		$currLink.children("#main_nav .subCMSListMenuUL").slideDown("slow");
	});
	
	//reset subnav
	$("#main_nav").mouseleave(function () {
		$("#main_nav .subCMSListMenuUL").slideUp("slow");
		$("a.active").removeClass("active");		
		$("#sub_nav").slideDown("slow");
	});
	
	$("a.colorbox_photo").colorbox({opacity:"0.75", photo:true, maxHeight:"75%", maxWidth:"75%"});

	$("a.colorbox_website").colorbox({ opacity:"0.75", width:"75%", height:"75%", iframe:true, title: function(){
		var url = $(this).attr('href');
		return '<a href="'+url+'" target="_blank">Open In New Window</a>';
		}});
		
	$("a.colorbox_map").colorbox({opacity:"0.75", innerWidth:"600px", innerHeight:"550px", iframe:true});
});
