var app = Class.create();
app.prototype = {
    initialize: function(){
    }, 
    PerguntaChange: function(action, pergunta, resposta, objHref){
        if(action == "open"){           
	        $(pergunta).addClassName('perguntas_ulSelected');
	        document.getElementById(objHref).removeAttribute('onclick');
	        document.getElementById(objHref).setAttribute("onclick","new app().PerguntaChange('close','"+pergunta+"','"+resposta+"','"+objHref+"');") ;
            Effect.BlindDown(resposta);
        }else{
            $(pergunta).removeClassName('perguntas_ulSelected');
            document.getElementById(objHref).removeAttribute('onclick');
	        document.getElementById(objHref).setAttribute("onclick","new app().PerguntaChange('open','"+pergunta+"','"+resposta+"','"+objHref+"');") ;
            Effect.BlindUp(resposta);
        }
            
    },
    ListaHome:function(type, cultura,url){
        this.options = {type:type,cultura:cultura};
        new Ajax.Updater('divListaAjaxHome',url,{
            method: "get",
            asynchronous: true,
            parameters: this.options
            });
    },	
	Init:function(){	
	}	
 };  