$(document).ready(efeitos);

//CHAMA AS DEMAIS FUNCOES
function efeitos(){
	menu_tree();
	//efeito_img();
	link_externo();
	zebrar();
};

//MENU DAS CATEGORIAS TREE
function menu_tree(){
	$("#extended-categories ul:first").treeview({
		persist:"location",
		collapsed:true,
		unique:true
	});
};

/*
//HABILITA EFEITO EXPANDIR IMGS
function efeito_img(){
	$("a[@href*=.jpg]").each(function(event){
		this.onclick = function(){
			return hs.expand(this,{align:'center'})
		};
		event.preventDefault;
	});
};
*/

//ABRE  LINKS EXTERNOS EM OUTRA JANELA
function link_externo(){
	$(".widget_rss a").attr('target','_blank');
};

//FUNCAO ZEBRAR
function zebrar(){
	$('#recent-posts ul li:odd, #statpress-topposts ul li:odd').addClass('listra').css({
		backgroundColor:"#EEE8AA"
	});
};