$(document).ready( function() {
  $('.karusell').cycle({ 
  	fx: 		'fade', 
  	speed: 		1000, 
  	timeout: 	9000
  });
});

// FEATURED CONTENT SLIDER
$(document).ready(function () {
	$("#rotator").argoFeatured({
		auto 				: false,
		allowAction 		: true,
		action 				: 'mouseenter',
		stopAfterAction 	: true,
		pauseLength 		: 9000,
		fadeSpeed 			: 500
	});
});


// 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]);
            }
        });
    });
});

