function submitSearch()
{
	window.location='/search.aspx?search='+document.getElementById('searchInput').value; 
}

$(function () {
    $('#banner').cycle({
        fx: 'scrollLeft',
        timeout: 7500
    });

	$("#searchInput").keypress(function (e) {
		if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
			submitSearch();
			return false;
		} else {
			return true;
		}
    });
});

