
$(document).ready(function() {
	autoHelp("#divContentInside");
	
	//---------------------------------------------------------------
	// Disable elements form.
	//---------------------------------------------------------------
	$("#id_tempo_inicio_pesquisa select").attr("disabled","disable");
	$("#id_tempo_fim_pesquisa select").attr("disabled","disable");			
				
	//enable elements from tabs
	
	$("#id_list_time").click( function() {
		$("#id_tempo_inicio_pesquisa select").attr("disabled","");
		$("#id_tempo_fim_pesquisa select").attr("disabled","");
		$("#id_n_ultimos_registros select").attr("disabled","disable");
		//$("#id_n_ultimos_registros option:selected").remove();
    });
    
    $("#id_list_records").click( function() {
		$("#id_tempo_inicio_pesquisa select").attr("disabled","disable");
		$("#id_tempo_fim_pesquisa select").attr("disabled","disable");
		$("#id_n_ultimos_registros select").attr("disabled","");
    });
    
   
    //---------------------------------------------------------------
    // Resize function (modify the size of template)
    //---------------------------------------------------------------
   
	if ((document.getElementById('divTable')!=null) && (screen.width < document.getElementById('divTable').offsetWidth+196)){
	 	
	 	widthOfTable = document.getElementById('divTable').offsetWidth;
	 	
		var cssObj = {
		'width' : widthOfTable+196
		}		
	
	 	if(widthOfTable < 800){
			var cssObj = {
			'width' : '100%'
			}
		}
		
		$("#divAll").css(cssObj);	
		
		if (jQuery.browser.msie){
			var cssObj = {
				'width' : widthOfTable+200
			}
			$("#divAll").css(cssObj);	
		}
	}
	
});
