$(document).ready(function() {
    $('#slideshow').cycle({
		fx: 'fade',
        speed: 2500
	});

    $(function() {
        /*var zIndexNumber=1000;
        $('div').each(function(){
            $(this).css('zIndex', zIndexNumber);
            zIndexNumber-=10;
        });*/
        $(".validated-form").validate();
    });

    $(".contact-form input:text, #contact-form textarea").each(function(){
        this.defaultText = this.value;
        $(this).focus(function(){
            if (this.value == this.defaultText) this.value = "";
            $(this).removeClass("default");
        })
        $(this).blur(function(){
            if (this.value == "" && this.defaultText) this.value = this.defaultText;
            $(this).addClass("default");
        });
    });

    $('.date-pick').datepick({startDate:'01/01/1920'});

    $('label.marquee').marquee();

    // IE6 Upgrade Message
    var ie6 = $.browser.msie && parseInt($.browser.version) === 6 && typeof window['XMLHttpRequest'] !== "object";
    if(ie6) {
        $('body').prepend('<div style="padding:8px;border:1px solid #bbbbbb;background-color:#f2f3f8;margin:2px 8px;font-size: 11px;"><h2 style="margin: 0px;">Upgrade your browser for a better web experience!</h2><p>You are using a browser that is <b>10 Years Old!</b><p>Why not download <a style="color: #62120f;" href="http://ie.microsoft.com/" target="_blank">Internet Explorer 9</a>, <a style="color: #62120f;" href="http://www.mozilla.com/en-US/firefox/" target="_blank">Mozilla Firefox</a> or <a style="color: #62120f;" href="http://www.google.com/chrome/" target="_blank">Google Chrome</a> for <b>free</b>?</p></div>');
    }
});
