$(document).ready(function()
{
   linkOpenWindow();
   
   // Fancy table styling
   $("#projects tbody tr:even").addClass("zebra");
   $("#projects tbody td:nth-child(2)").css("text-align", "left");
   
   // Add hover styling to table rows
   $("#projects tbody tr").hover(function()
   {
      $(this).addClass("zebra_hover");
   }, function()
   {
      $(this).removeClass("zebra_hover");
   });
});

function linkOpenWindow()
{
   var links = document.getElementsByTagName("a");
	for (var i = 0; i < links.length; i++)
	{
		if (links[i].className == 'new-window')
		{
			links[i].onclick = function()
			{
				window.open(this.href, 'Viewer', 'height=600, width=800, scrollbars=1, toolbar=1');
				return false;
			}
		}
	}
}


