// CUFON
Cufon.replace('.hl_prod h2', {fontFamily: 'ConduitLight'});
Cufon.replace('.hl_prod h3', {fontFamily: 'ConduitBoldItalic'});
Cufon.replace('.kolC h4,#sok_resultat_head,h5,div#innholdSok h1,div#innholdSok h2,.quotes p', {fontFamily: 'ConduitBold'});

// SEARCH FIELD VALUE SWAP
$(function() {
    swapValues = [];
    $(".swap_value").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]);
            }
        });
    });
});
