function initTabs() {
    $('tab1').onclick = function() {
            $('tab1').className = 'on';
            $('tab2').className = '';
            $('category').value = '1';

            $('lettings').style.marginLeft = '50px';
            $('both').style.display = 'none';
            $('bothlabel').style.display = 'none';
            if ( $('both').checked == true) {
                $('sales').checked = true;
                doSales('minimumprice', 'min', 0);
                doSales('maximumprice', 'max', 0);
            }
            doResidential('propertytype', 0);
            selectIndex('propertytype', 0);
    }
    $('tab2').onclick = function() {
            $('tab2').className = 'on';
            $('tab1').className = '';
            $('category').value = '3';
            $('lettings').style.marginLeft = '16px';
            $('both').style.display = 'block';
            $('bothlabel').style.display = 'inline';
            doCommercial('propertytype', 0);
            selectIndex('propertytype', 0);
    }
    $('sales').onclick = function() {
        doSales('minimumprice', 'min', 0);
        doSales('maximumprice', 'max', 0);
    }
    $('lettings').onclick = function() {
        doLettings('minimumprice', 'min', 0);
        doLettings('maximumprice', 'max', 0);
    }
}

addLoadEvent(initTabs);