var slideSpeed = 200; //ms

$(document).ready(function() {	
	resetBlocos();
	
	$('div[@id^="Bloco"]').click(function(){
		var blockName = 'expand' + this.id;
		//alert(blockName);
		//1. altera a propria cor para mostrar seleccao
		
		//2. expande/colapsa o bloco
		//$('div[@id^="' + blockName + '"]').slideToggle("fast");
		$('div[@id^="' + blockName + '"]').slideToggle("fast");
	});
	
	$('div[@id^="Bloco"]').hover(function(){
		//alert("hover");
		$(this).parent().parent().css('background', '#e5ffd7');
	}, function(){
		$(this).parent().parent().css('background', 'transparent');
	});
	
	$('input[@id="loginRestricted"]').click(function(){
		//alert("Este área estará disponible brevemente.");
		$('div[@id="expandBlocoRestricted"]').slideUp("fast");
		return true;
	});
	
/*	$('td[@class*="main_menu"]').click(function(){
		var myID = $(this).id;
		alert(myID);
		var blockName = 'expand' + $(this).id;
		//alert(blockName);
		//1. altera a propria cor para mostrar seleccao
		
		//2. expande/colapsa o bloco
		//$('div[@id^="' + blockName + '"]').slideToggle("fast");
		//$('div[@id^="' + blockName + '"]').slideToggle("fast");
	});
*/

/*	$('#docs').click(
		function() {
			$('ul',this.parentNode).slideToggle(500);
			this.blur();
			return false;
		}
	);
	*/

}); //fim do document.ready

	
	



function resetBlocos(){
	//esconde todas as linhas devidas
	$('div[@id^="expand"]').hide();
}

