// JavaScript Document
/**
 * @AUTOR.......: Cláudio Jr. <claudiojrm@gmail.com>
 * @LINGUAGEM...: JS
 ********************************************************************************
 */

$(document).ready(function(){
	zebra();
	$('table tbody tr:odd').addClass('odd');
	$("#modo a").bind("click", function(){
		id = $(this).attr("id");
		
		if($("#exibe"+id).css("display") == "none"){
			$(".exibe").hide();
			$("#exibe"+id).show();
		}
	})
});
function zebra(){
	$('table tbody tr').hover(function(){
		$(this).addClass('over');
	}, function(){
		$(this).removeClass('over');
	})
}
