//#############################################################################
//                                    
//#############################################################################

// Set height on container so 100% height of child elements will work (left nav)
$(document).ready(function() {
	var containerHeight = $(".contentWrapper").height();
	$(".contentWrapper ").css('height',containerHeight );
});

// DropDown Menu Function

$(function () {
	$('.sub-menu').each(function () {
		$(this).parent().eq(0).hover(function () {
			$('.sub-menu:eq(0)', this).show();}, function () {
				$('.sub-menu:eq(0)', this).hide();
		});
	});
});

// When on drop down, keep parent item in hover state

$('ul.sub-menu').mouseover(function() {
  $(this).parent().css('background', '#7e8a5a');
});

$('ul.sub-menu').mouseout(function() {
  $(this).parent().css('background', 'none');
});



Shadowbox.init();
