// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function()
{
	jQuery('#topoMenuDiv > #dock,#dock2 ').Fisheye(
	{
		maxWidth: 20,
		maxHeight: 100,
		items: 'a',					
		container: '.dock-container',
		itemWidth: 110,
		proximity: 90,
		halign : 'center'
	});	
		
	jQuery("#btSelecEmpresa").data("status", {aberto:false});
	jQuery('#btSelecEmpresa').click(function()
	{
		abreEmpresas();
	});
});

function abreEmpresas()
{		
	jQuery(document).scrollTop(0);
	if(jQuery("#btSelecEmpresa").data("status").aberto == false)
	{			
		jQuery('#topoDiv').stop().animate({'height':'153px'},700);
		jQuery('#topoMenuDiv').stop().animate({'height':'129px'},700);
		jQuery('#setaTopBar').css({'background-position': 'bottom'});
		jQuery("#btSelecEmpresa").data("status", {aberto:true});
		jQuery(window).stop().animate({top:'0px'});
	}else
	{
		jQuery('#topoDiv').stop().animate({'height':'24px'},500);
		jQuery('#topoMenuDiv').stop().animate({'height':'0px'},500);
		jQuery('#setaTopBar').css({'background-position': 'top'});
		jQuery("#btSelecEmpresa").data("status", {aberto:false});
	}	
}
