$(document).ready( function(){
  $('#toppmeny ul li').hover(
	function() { $('ul.level1', this).show(200); },
	function() { $('ul.level1', this).stop(true, true).hide(200); });
});

$(document).ready( function() {
  $('.karusell').cycle({ 
  	fx: 		'fade', 
  	speed: 		2000, 
  	timeout: 	7000,
 	random:   	1,
  	pager: 		'.nav' 
  });
  $('a[rel*=lightbox]').lightBox();
  $('#Tips').hide();
  $('a.TipsBtn').click(function(){
	$('#Tips').toggle('slow');
  });
    
});

// 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]);
            }
        });
    });
});


