﻿$(document).ready(
            function() {
                $('#ticker').innerfade({
                    animationtype: 'slide',
                    speed: 900,
                    timeout: 4000,
                    type: 'sequence',
                    containerheight: '25px'
                });

            });
            
$(document).ready(function() {
 
            $(".water").focus(function() {
                if ($(this).val() == this.title) {
                    $(this).val(""); $(this).removeClass("water");
                }
            });
 
            $(".water").blur(function() {
                if ($.trim($(this).val()) == "") {                   
                    $(this).val(this.title); $(this).addClass("water");
                }
            });
        });