
function menuClick( id )
{
    var elem = $('#submenu1_'+id);
    $('div[id^=submenu1_]').hide('normal');
    if( elem.is(':hidden') )
    {elem.show('normal');}
    else
    {elem.hide('normal');}
}

function menuClick_sub( id )
{
    var elem = $('#submenu2_'+id);
    $('div[id^=submenu2_]').hide('normal');
    if( elem.is(':hidden') )
    {elem.show('normal');}
    else
    {elem.hide('normal');}
}

function loadForm( path ) 
{
	$('#contentContainer').load( path );
}

function toggleMaps( id )
{
	var open_id;
	
	if( $('#locations_map_1').css('display') != 'none' )
	{
		$('#locations_map_1').toggle();
		open_id = 1;
	}
	if( $('#locations_map_2').css('display') != 'none' )
	{
		$('#locations_map_2').toggle();
		open_id = 2;
	}
	
	if( open_id != id )
	{
		$('#locations_map_'+id).toggle();
	}
}


$(document).ready
(
	function()
	{	
		if( screen.height <= 800 )
		{
			$('.main').css( 'top', '0px' );
			$('.main').css( 'margin-top', '0px' );
		}
        if( $('.content_text_bl').height() >= 575 )
        {
            $('.content_text_bl').css('height', '607');
            $('.content_text_bl').css('overflow-y', 'scroll');
        }
	}
);
