﻿// Cal-Regent.com scripts
$(document).ready(function() {
    $('.slideshow').cycle({
        timeout: 10000,
        speed: 2000
    });
});

$(function() {
    $(".Contact tbody tr").mouseover(function() {
        $(this).addClass("over");
    });
    $(".Contact tbody tr").mouseout(function() {
        $(this).removeClass("over");
    });
    $(".Contact tbody tr:odd").addClass("striped");

});

$(function() {

    // Accordion
    $("#accordion").accordion({ collapsible: true, header: "h3" });

    // Tabs
    $('#tabs').tabs();


    // Dialog			
    $('#dialog').dialog({
        autoOpen: false,
        width: 600,
        buttons: {
            "Ok": function() {
                $(this).dialog("close");
            },
            "Cancel": function() {
                $(this).dialog("close");
            }
        }
    });

    // Datepicker
    $('#datepicker').datepicker({
        inline: true
    });

    // Slider
    $('#slider').slider({
        range: true,
        values: [17, 67]
    });

    //hover states on the static widgets
    $('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); },
					function() { $(this).removeClass('ui-state-hover'); }
				);

});
