﻿$(document).ready(function () {

	//Print current page
	$(".print").click(function () { window.print(); return false; });

	//Add alternate styles to table rows
	$("tr:even").addClass("alt");

	// Make all of attachment div a link
	$(".attachment").click(function () {
		location.href = $(this).find("a").attr("href");
	});
	
	$('#tooltrippin').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		showBody: " - ", 
		fade: 250 
	});
});

