$(document).ready(function () {
	$('#exactHelpLink').click(function (e) {
		e.preventDefault();
		$('#exactModal').modal();
	});
	$('#smartHelpLink').click(function (e) {
		e.preventDefault();
		$('#smartModal').modal();
	});
	$("#cfResultsTable").tablesorter({
		headers: { 
			1: {sorter: false} 
		}
	});
	$(document).keypress(function (e) {
	    if (e.which == 13) { 
			e.preventDefault();
			$("#cfSearchForm").submit(); 
		}
	});
	$('.detailsLink').click( function(e){
		e.preventDefault();
	});
});

function showDetails(linkhash, divid, qterms) {
	$('#'+divid).load('/index.php?option=com_coursefinder&task=ajax.details&lh='+linkhash+'&q='+qterms).modal();
}