$j(function () { var defaultLocationCode = 'LO'; $j('#datePicker').datePicker(); $j('#datePicker').bind('dpClosed', function (e, selectedDates) { var d = selectedDates[0]; if (d) { d = new Date(d); startMonthYearCombi = d.getMonth() + 1 + '|' + d.getFullYear(); $j('#ftStartDay').children().each(function (option) { if (this.value == d.getDate()) { this.selected = true } }); $j('#startMonthYearCombi').children().each(function (option) { if (this.value == startMonthYearCombi) { this.selected = true } }) } }); if ($j("#searchBox").length) { $j("#searchBox").autocomplete('www.superbreak.com/home.cfm?content=search.getAutoCompleteResults', { minChars: 3, max: 50, cacheLength: 50, delay: 400, autoFill: false, mustMatch: false, scrollHeight: 220, dispayItemPos: 0, displayItemSeperator: '$', keyNameItemPos: 3, keyItemPos: 2, keyFields: ['locationCode', 'groupId'], formatItem: function (data, i, n, value) { return value.split("$")[0] } }) } function toggleSearchType() { $j('#listSearch').toggle(); $j('#freeTextSearch').toggle(); $j('#searchBox').val('') } $j('#changeToList').click(function (e) { $j('#groupId').val('0'); $j('#locationCode').each(function () { if (this.value == defaultLocationCode) { this.selected = true } }); toggleSearchType() }); $j('#searchBox').keydown(function (e) { $j('#groupId').val('0'); document.getElementById('locationCode').options[0].selected = true; $j('#useSearchString').val('true') }); $j('#changeToFreeText').click(function (e) { toggleSearchType() }); $j('#searchForm').submit(function (e) { if ($j('#locationCode').val() != '') { $j('#useSearchString').val('false') } if ($j('#groupId').val() != 0) { $j('#useSearchString').val('false') } }) });