// When the document loads do everything inside here ...
$(document).ready(function(){
	$(function() {
		$(".MProdutos").treeview({
			animated: "fast",
			collapsed: true,
			unique: true,
			persist: "cookie",
			toggle: function() {
				window.console && console.log("%o was toggled", this);
			}
		});
	})

}); //close $(


//LightBox / FaceBox
jQuery(document).ready(function($) {
  $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
});

/*
$(function(){
	$.superbox.settings = {
		closeTxt: "Fechar",
		loadTxt: "a carregar...",
		nextTxt: "Pr&oacute;xima",
		prevTxt: "Anterior"
	};
	$.superbox();
}); 
*/