﻿$(function () {

    // Style fixes
    var bodyHeight = $('#body').height();
    var leftHeight = $('#left').height();

    if (bodyHeight > leftHeight) {
        $('#left').css('height', $('#body').height());
    }

    // Rotating banner
    $('.homepage_feature').cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 6500
    });

    // Search text box
    $("#ctl00_tbSearch").click(function () {
        $(this).val("");
    });
});
