// JavaScript Document

$(document).ready(function() {
	
var notInd = $("#noticiasGrupo .notInd")
for(i=0; i<notInd.length; i++){
	
	//notInd[i].id = i
	//alert(notInd[i].id);
	
	
	
	$(notInd[i]).click(function()
					{
					
					var valor = this.id;
					var val = valor.substring(3);	
					window.open("http://gruporbcom.com.br/noticiasGp/nots.php?ac=sel&n="+val,'_parent','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
					return false;
					alert(val);
					});
	}


});
