$().ready(function() {
    
    $('.aba_grade').each(function(){
        $(this).click(function(){
            var dia_semana = $(this).attr('id');
            location.href='grade_programacao.php?id_grade='+dia_semana;
        });
    });
    
    /*$('.programa').each(function(){
		$(this).click(function(){
			var descricao = $(this).attr('alt');
			if(descricao!=null){
				newWindow=window.open('','Descrição do Programa','width=400,height=300')
				newWindow.document.write(descricao);
			}
		})
	})
	
	$('.programa_saiba_mais').each(function(){
		$(this).click(function(){
			var url = $(this).attr('alt');
			newWindow = window.open(url,'popup','toolbar=yes, location=yes, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=600, height=450');
		
		})
	})*/
})


