// JavaScript Document
  $(document).ready(function(){
		
		
		 $('.formContainer tr.sortable').hover(function(){
														$('.formContainer tr.sortable').find('td').removeClass('tableRowActive');
														$(this).find('td').addClass('tableRowActive');
														});
		$('#newsTable').find('.link:odd').addClass('odd');
		$('#newsTable').find('.link:even').addClass('even');

		if ($(window).height()>620)	$("#principleHolder").css("top", ($(window).height()/2)-200 + "px");
		if ($(window).width()>1070)	$("#principleHolder").css("left", ($(window).width()/3)-100 + "px");
	});
  $(window).resize(function() {
		if ($(window).height()>620)	$("#principleHolder").css("top", ($(window).height()/2)-200 + "px");
		if ($(window).width()>1070)	$("#principleHolder").css("left", ($(window).width()/3)-100 + "px");
	});

  
  