﻿///<reference path="jquery-1.3.2.js"/>

$(document).ready(function () {
    $("#headerList").show();
    $('#headerCarousel').infiniteCarousel({
        /*
        transitionSpeed – the time (in milliseconds) it will take to transition between two images (default 1500)
        displayTime – the time (in milliseconds) to display each image (default: 6000)
        textholderHeight – the height of the caption. This is a fraction of the height of the images. (default: .2)
        displayProgressBar – Boolean. Whether or not to display the progress bar (default: 1)
        displayThumbnails – Boolean. Whether or not to display the thumbnails for the carousel. (default:  1)
        displayThumbnailNumbers – Boolean. Whether or not to automatically place numbers in the thumbnail boxes. (default: 1)
        displayThumbnailBackground – Boolean. Whether or not to use the corresponding image as the background for a thumbnail box. (default: 1)
        thumbnailWidth – the width of each thumbnail box. (default: ‘20px’)
        thumbnailHeight – the height of each thumbnail box. (default: ‘20px’)\
        thumbnailFontSize – the font size of the number within the thumbnail box. (default: .7em)
        */
        transitionSpeed: 500,
        displayTime: 10000,
        textholderHeight: .10,
        displayProgressBar: 0,
        displayThumbnails: 0,
        displayThumbnailNumbers: 0,
        displayThumbnailBackground: 0,
        thumbnailWidth: 0,
        thumbnailHeight: 0,
        thumbnailFontSize: 0
    });
});

$(document).ready(function () {
    $("#Date").datepicker({ dateFormat: 'yy-mm-dd' });
});

