$(document).ready(function(){
    //FUNÇÃO PARA INICIAR COM O FUNDO ESCOLHIDO PELO USUÁRIO ANTERIORMENTE
    if($.cookie("fundo") != null){
        ini_color = $.cookie("fundo");
        ini_imagem = "url('"+IMGPATH+"/layout/fundo_" + ini_color + ".jpg')";
        $("body").css("background-image", ini_imagem);
    }

    //FUNÇÃO PARA ALTERAR O FUNDO DO SITE AO CLICAR NOS BOT�ES DE COR
    $(".bt_color").click(function(){
        color = $(this).attr("id");
        imagem = "url('"+IMGPATH+"/layout/fundo_" + color + ".jpg')";
        $("body").css("background-image", imagem);
        $.cookie("fundo", color, {
            expires: 30
        });
    });

    //FUNÇÃO PARA LIMPAR E PREENCHER OS CAMPOS DE TEXTO DO SITE
    $("input[type='text'], input[type='password'], textarea").focus(function(){
        if($(this).val() == $(this).attr("defaultValue")){
            $(this).val("");
        }
        $(this).blur(function(){
            if($(this).val() == ""){
                $(this).val($(this).attr("defaultValue"));
            }
        });
    });

    //FUNÇÃO PARA CHAMAR A PÁGINA DE PESQUISA
    $("#bt_busca").click(function(){
        var busca = $("#campo_busca").val();
        if(busca != $("#campo_busca").attr("defaultValue")){
            window.location="busca.php?busca="+busca;
        }
        else{
            alert("Por favor, digite o que deseja procurar.");
        }
    });

   $(".bt_idioma").click(function(){
       $.post('home/changelaguage/'+$(this).attr('id'),'',
       function(ret){
        window.location.reload();
       });
   });

    $('span.link').parent().hover(function(){
        $(this).children('ul').show();
    },function(){
        $(this).children('ul').hide();
    });


});


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 : 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
 */
