﻿jQuery(document).ready(function() {
    $("input.watermark")
                .focus(function() {
                    if (this.value == this.watermark) {
                        $(this).removeClass('watermark');
                        this.value = '';
                    }
                })
                .blur(function() {
                    if (this.value == '') {
                        $(this).addClass('watermark');
                        this.value = this.watermark;
                    }
                });
    jQuery.each($("input.watermark"), function() { this.value = this.watermark = $(this).attr('watermark'); });
    $('#submit').click(function() {
        jQuery.each($("input.watermark"), function() { if (this.value == this.watermark) this.value = ''; });
    });
});
var carousel_scroll = true;