$(document).ready(function () {
							
	$("#exibirLinha").click(function() {
		var id = $("#selLinha").val();
		if(id>0) {		
			return window.location = "linhas_detalhes.php?id="+id;
		}
	});
	
	$("#btnPrint").click(function() {
		var nwin = window.open('linhas_print.php?id='+$(this).attr('linha'), 'wprint', 'width=800,height=600,scrollbars=yes'); 
		nwin.focus();
	});
	
	
	$("a[rel='ligthbox']").colorbox();

	
});
