$().ready(function() {
	$('.mandywidget').click(function() {
		if (!$(this).siblings().filter(':first').is(':visible'))
		{
			if (this.id == 'directors-title')
			{
				toggleMenu($('#directors-title'));
				if ($('#contacts-menu').is(':visible')) toggleMenu($('#contacts-title'));
			}
			else
			{
				toggleMenu($('#contacts-title'));
				if ($('#directors-menu').is(':visible')) toggleMenu($('#directors-title'));
			}
		}
	});
	
	$('.mandywidget').mouseover(function() {
		$(this).addClass('title-on');
	});
	
	$('.mandywidget').mouseout(function() {
		if (!$(this).siblings().filter(':first').is(':visible')) $(this).removeClass('title-on');
	});
	
	$('.modal').colorbox();
});

function toggleMenu(titleObj)
{
	titleObj.siblings().toggle(250, function(){
		$.cookie(this.id, $(this).is(":visible"));
		if ($(this).is(":visible")) titleObj.addClass('title-on');
		else titleObj.removeClass('title-on');
	});
}