
$(document).ready(
	function()
	{
		//Menu Leopard Navegacao
		$('#leopard').Fisheye(
			{
				maxWidth:  60,
				items:     'a',
				itemsText: 'span',
				container: '.leopardContainer',
				itemWidth: 40,
				proximity: 80,
				alignment: 'left',
				valign:    'top',
				halign:    'center'
			}
		)
		
		//Janelas Drop down
		$('a.MinMax').bind('click', toggleContent);
		
	}
);

//Toggle dos Drop
	var toggleContent = function(e){
		var targetContent = $('div.ConteudoElemento', this.parentNode.parentNode);
		if (targetContent.css('display') == 'none') {
			targetContent.slideDown(600);
			$(this).html('[-]');
		} else {
			targetContent.slideUp(600);
			$(this).html('[+]');
		}
		return false;
	};

