/**
 * Function : dump()
 * Arguments: The data - array,hash(associative array),object
 *    The level - OPTIONAL
 * Returns  : The textual representation of the array.
 * This function was inspired by the print_r function of PHP.
 * This will accept some data as the argument and return a
 * text that will be a more readable version of the
 * array/hash/object that is given.
 * Docs: http://www.openjs.com/scripts/others/dump_function_php_print_r.php
 */
function dump(arr,level) {
	var dumped_text = "";
	if(!level) level = 0;
	
	//The padding given at the beginning of the line.
	var level_padding = "";
	for(var j=0;j<level+1;j++) level_padding += "    ";
	
	if(typeof(arr) == 'object') { //Array/Hashes/Objects 
		for(var item in arr) {
			var value = arr[item];
			
			if(typeof(value) == 'object') { //If it is an array,
				dumped_text += level_padding + "'" + item + "' ...\n";
				dumped_text += dump(value,level+1);
			} else {
				dumped_text += level_padding + "'" + item + "' => \"" + value + "\"\n";
			}
		}
	} else { //Stings/Chars/Numbers etc.
		dumped_text = "===>"+arr+"<===("+typeof(arr)+")";
	}
	return dumped_text;
}

function showOverlay(force)
{
	if (force == true)
	{
		$('#overlay').css('display', 'block');
		return;
	}
	var cookie = $.cookie('moinchef-showOverlay');
	if (cookie == null || cookie == 'true')
	{
		cookie = $.cookie('moinchef-overlayAlreadyShowed');
		if (cookie == null || cookie != 'true')
		{
			$.cookie('moinchef-overlayAlreadyShowed', 'true', { path: '/'});
			$('#overlay').css('display', 'block');
		}
	}
}

function closeOverlay()
{
	$('#overlay').css('display', 'none');
	var value = 'true';
	if ($('#showOverlay:checked').val() == '1')
	{
		value = 'false';
	}
	$.cookie('moinchef-showOverlay', value, { path: '/', expires: 30 });
}

$(document).ready(function()
{
        var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
    $(".opener").click(function()
    {
        $(this).next(".slide").slideToggle(200)
        $(this).toggleClass("round");
        return false;
    });
    
    $(".menu-link").mouseover(function() 
    {
        //$(".menu-link-active").toggleClass("menu-link-active");
        $(this).toggleClass("menu-link-active");
        if(IE6 == false) {
            $(this).parent().children("img").css('display', 'inline');
        }
    });
    
    $(".menu-link").mouseout(function() 
    {
        //$(".menu-link-active").toggleClass("menu-link-active");
        $(this).toggleClass("menu-link-active");
        
        $(this).parent().children("img").css('display', 'none');
    });
    
    $('#results').hide();
    
    $('.button-simu').click(function() {
        $('#results').show();
        $('#results div').show();
    });
        
    $('.red-box').hide();
    $('.red-box').fadeIn(3000);

});

