$('#slide').before('<div id="nav">').cycle({
    fx:     'fade',
    speed:   1000,
    timeout: 5000
});

$(document).ready( function(){
  $('.hovedMeny ul li').hover(
	function() { $('ul.level1', this).show(200); },
	function() { $('ul.level1', this).stop(true, true).hide(200); });
});

// 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]);
            }
        });
    });
});
