$(document).ready(function(){
	$("table").tablesorter({widgets: ['zebra']});
	$(".alert-loading").hide();
	$('.hover-col').each(function(){
		$(this).mouseover(function(){
			$(this).addClass('hover');
		}).mouseout(function(){
			$(this).removeClass('hover');
		}).click(function(){
			window.location.href = $('a.button', this).attr('href');
		});
	});
});

