jQuery.noConflict();
jQuery(document).ready(function() {
    cn = cv = ce = ct = n = true;

    jQuery("#ContactForm_ContactForm_navn").focus(function(){
        if(cn) { jQuery(this).val(""); cn = false; }
    });

    jQuery("#ContactForm_ContactForm_virksomhed").focus(function(){
        if(cv) { jQuery(this).val(""); cv = false; }
    });

    jQuery("#ContactForm_ContactForm_email").focus(function(){
        if(ce) { jQuery(this).val(""); ce = false; }
    });

    jQuery("#ContactForm_ContactForm_telefon").focus(function(){
        if(ct) { jQuery(this).val(""); ct = false; }
    });

    jQuery("#SignupForm_NewsletterForm_Email").focus(function(){
        if(n) { jQuery(this).val(""); n = false }
    });
});