﻿function clearText(obj) {
    if (obj.value.indexOf('Enter Your Message') > -1)
        obj.value = '';
}

function countChars(obj, limit) {
    var $target = $(obj).nextAll("div").eq(0);
    $target.text(limit - $(obj).val().length);
}

function clearField(obj) {
    if ($(obj).val() == $(obj).attr("title")) {
        $(obj).val("");
    }
}

$(document).ready(function() {
    $("a[id^='showMessage']").fancybox({
        'hideOnContentClick': true,
        'hideOnOverlayClick': false,
        'frameHeight': 200,
        'frameWidth': 300,
        'padding': 10,
        'overlayOpacity': .5
    });
    
    $(':text, textarea').focusin(function() {
        clearField(this);
    });

    $(':text, textarea').blur(function() {
        if ($(this).val().length < 1)
            $(this).val($(this).attr("title"));
    });
});
