$(document).ready(function() {
	
	$("a.download, a.releaseNote").click(function() {
		
		var url = "/libraries/driver/download.asp";
		var title = $(this).attr("title");

		$('<div><div class="titleBar"><div class="title">' + title + '</div><div class="closeButton"><a href="javascript:$.modal.close();">Close</a></div></div><iframe width="100%" height="100%" frameBorder="0" src="' + url + '"></iframe></div>').modal({
			close: false
		});

		return false;

		
	});
	
	$("a.pitNote").click(function() {
		
		var RowId = $(this).attr("RowId");
		
		$("#PitNote_"+RowId).toggle();
		return false;

		
	});
	
	$("a.showAll").click(function() {
		
		var tableId = $(this).attr("tableId");
		
		$("#" + tableId + " tr.more").show();
		$(this).remove();
		
		return false;

		
	});
	
});