$(function(){
			$('#invMiniTable').tableSorter({
					stripingRowClass: ['even','odd'],	// Class names for striping supplyed as a array.
					stripeRowsOnStartUp: true		// Strip rows on tableSorter init.
				});
			  $('#invMini table tr').mouseover(
				 function(){
							$(this).addClass('highlight')
							});
				$('#invMini table tr').mouseout(
				 function(){
							$(this).removeClass('highlight')
							});
		});
