(function($){
	$.showHide = {
		
		__constructor : function(){
			var me = this;
			me.initConfig();
			
			// targets (bind em elementos passando o evento)
			me.listaDefinicao();
		},
		
		listaDefinicao: function() {
			$("dl.itens dt").click(function(e){
				//alert(e.target.tagName);
				$("dd:visible").slideUp("normal");
				if ($(this).next().is(':visible')) return false;
				$(this).next().slideDown("fast");
				return false;
			});
			
		},
		
		initConfig: function() {
			$("#servicos tr:not('.fotos')").css("cursor","pointer");
			$("#servicos tr.fotos").hide();
			$("dl.itens dt").css;
			$("dl.itens dd:not(:first)").hide();
		}
			
	}
})(jQuery);
