$(function(){$('#fotos').cycle({fx:'fade',speed:1000,timeout:6000});});

function network()
{ 
	var nw = $('#network');
	nw.append('<h4 class="replace aba">Network</h4><a href="javascript:;" class="fechar replace">Fechar</a>');
	
	nw.find('h4.aba').toggle(
		function(){nw.animate({left:'0'});},
		function(){nw.animate({left:'-370px'});}
	);
	nw.find('a.fechar').click(function(){nw.animate({left:'-370px'});});
	if ( nw.height() > $(window).height() )
	{
		nw.find('ul.grupos').css({'overflow':'auto', 'height':$(window).height()-75});
		nw.find('ul.grupos ul').css('margin-right','8px');
	}
}
$( network );
