// Searchform
$(function() {
    swapValues = [];
    $("#mailformname").each(function(i){
        swapValues[i] = $(this).val();
        $(this).focus(function(){
            if ($(this).val() == swapValues[i]) {
                $(this).val("");
            }
        }).blur(function(){
            if ($.trim($(this).val()) == "") {
                $(this).val(swapValues[i]);
            }
        });
    });
});

// Searchform
$(function() {
    swapValues2 = [];
    $("#mailformcompany").each(function(i){
        swapValues2[i] = $(this).val();
        $(this).focus(function(){
            if ($(this).val() == swapValues2[i]) {
                $(this).val("");
            }
        }).blur(function(){
            if ($.trim($(this).val()) == "") {
                $(this).val(swapValues2[i]);
            }
        });
    });
});
