$(document).ready(function()
	{
	setTimeout("$('#cont_nav li:not(.selected)').dropShadow({color:'#000022', opacity:4})", 1000)
	
	$('#mainCont a').click(function()
		{
		window.open($(this).attr('href'));
		return false;
		});
    
    
    
    var old_fold = null;
    /* START folded_with_headers */
    $('.folded_with_headers h3').click(function()
        {
            if (old_fold == this)
                return false;
            
            if (old_fold)
                {
                $(old_fold).parent().children('div').slideToggle('slow');
                $(old_fold).removeClass('opened');
                }
            old_fold = this;
            
            $(this).toggleClass('opened');
            $(this).parent().children('div').slideToggle('slow');
            return true;
        });
    
    /* END folded_with_headers */
	});
