function colecao(){
	abimodal.start()
	abimodal.add($("<div>").flash({
		swf:"catalogo/catalogue.swf",
		height: "650",
		width: "900"								  
	}))
}

function colecaoFechar(){
	abimodal.end()
}

function varray(valor,array){
	retorno = false
	var a = array.split(",");
	for(j=0;j<a.length;j++){
		if(a[j]==valor)retorno = true;
	}
	return retorno;
}



$(function(){
	var e = document.URL.split("/")
	n = e[e.length-1];
	n = n.split("?");
	endereco = n[0];
	$.each($(".menu a"),function(i,v){
		var title = $(".menu a").eq(i).attr("title");		
		if(varray(endereco,title)){
			$(".menu a").eq(i).addClass("ativo");				
		}
	});
	
	$('.firula_rodape').height(($(document).height()-$("#page").height())+74);
	$(document).resize(function(){
		$('.firula_rodape').height(($(document).height()-$("#page").height())+74);
	})
});
