//Cufon.replace('.eFont', { fontFamily: 'DIN', hover:true });
//Cufon.replace('.eFontLight', { fontFamily: 'DIN', hover:true });

var page = {
    init: function() {
        $('.jqTransform').jqTransform();
        $('#footerForm br').remove()

        $('.autoValue').each(function() {
            var _this = this;
            $(this).parents('form').submit(function() {
                if($(_this).val() == vDefVal)
                    $(_this).val('');
            });
            var vDefVal = $(this).val();
            $(this).blur(function() {
                if($(this).val() == '')
                    $(this).val(vDefVal);
            });
            $(this).focus(function() {
                if($(this).val() == vDefVal)
                    $(this).val('');
            })
        });
    }
};

$(document).ready(function() {page.init();});
