function showCal(nYear,nMonth,calID,EventCID){
	$.post('/MODULES/calendar-month.lasso',
		{
		'month'		: nMonth,
		'year'		: nYear,
		'EventCID'	: EventCID
		},
		function(data){
			$('#focus-calendar').html(data);
		}
	);
}

$(document).ready(function(){
	tertiaryIndicatorFix();
});

function tertiaryIndicatorFix(){
	$('ul#nav .li1 .li2 .drop').each( function() {
		$(this).parent('li').children('a').addClass('has-drop');
	});
}

