$(document).ready(function(){

	var t = 0;

	if ( $("#refresh").attr('checked') ) {
	
		 t = setTimeout("window.location.href = window.location.href", 180000 )
		 
	}
	
	$("#refresh").click(function() {
		
		if ( $("#refresh").attr('checked') ) {
			
			 t = setTimeout("window.location.href = window.location.href", 180000 )
			 
		} else {
			
			clearTimeout(t);
			
		}
	});
	
    $("._configMainpageAnalysis").configMenu({

        'portlet'				: 30,		//_mainpageAnalysis
        'success'				: function(){

            $("._portlet-content", "._mainpageAnalysis").portletContent({ 'url': 'mainanalysis?mainanalysis_controller=1' });

        }

    });

});

