$(function() {

	// Allows the enter key to submit the form from a text box or other control
	$(".enterKeyEnabledSearch").keypress(function(e) {
		if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
			$('.defaultButtonSearch').click();
			return false;
		} else {
			return true;
		}
	});

});
