$(document).ready(function() {
/*for sort table*/
$(".sorter_table thead th").hover(
	function(){
	$(this).addClass("sort_icons");
	},
	function(){
	$(this).removeClass("sort_icons");
	$(this).removeClass("sort_icons_desc");
	$(this).removeClass("sort_icons_asc");
	}
);
						   })
