/**
 * table sorter function - calls from jquery libs
*/	 
	 $(document).ready(function() 
			{ 
				$(".priceGuideTable").tablesorter( {sortList: [[0,0]]} );
				
				
				$('th').hover(  
					function() {  
						$(this).addClass('hover');  
					},  
					function() {  
						$(this).removeClass('hover');  
					}  
				);
			} 
		); 