/* Custom jQuery Javascript */
/* Armchair Media 2010 */

jQuery(function ($) {

    /* Hide the text inside text inputs stuff */
    swapValue = [];
    $(".swap-value").each(function (i) {
        swapValue[i] = $(this).val();
        $(this).focus(function () {
            if ($(this).val() == swapValue[i]) {
                $(this).val("");
            }
            $(this).addClass("focus");
        }).blur(function () {
            if ($.trim($(this).val()) == "") {
                $(this).val(swapValue[i]);
                $(this).removeClass("focus");
            }
        });
    });

});
