$(document).ready(function(){
    $("a.lightbox-view").lightBox();
    
    $("#send-project").bind("click", function (){
        $("#send-form").show();
        return false;
    });
    
    $("#send-form-close").bind("click", function (){
        $("#send-form").hide();
        return false;
    });
    
    $("#send-project").bind("click", function (){
        $("#send-form2").show();
        return false;
    });
    
    $("#send-form-close").bind("click", function (){
        $("#send-form2").hide();
        return false;
    });
    
    $("#send-form input, #send-form textarea").bind("focus", function () {
        if ($(this).val() == $(this)[0].defaultValue) {
            $(this).val("");
            $(this)[0].style.color = "#000";
        }
    }).bind("blur", function () {
        if (!$(this).val()) {
            $(this).val($(this)[0].defaultValue);
            $(this)[0].style.color = "#bbb";
        }
    });

    $("#send-form2 input, #send-form textarea").bind("focus", function () {
        if ($(this).val() == $(this)[0].defaultValue) {
            $(this).val("");
            $(this)[0].style.color = "#000";
        }
    }).bind("blur", function () {
        if (!$(this).val()) {
            $(this).val($(this)[0].defaultValue);
            $(this)[0].style.color = "#bbb";
        }
    });
});
