    /*$(function() {
        $('#offer').hide();
        $('#learn').show();
    });

    function ReverseContentDisplay() {
        if(document.getElementById('offer').style.display == "block") { document.getElementById('offer').style.display = "none"; }
        else { document.getElementById('offer').style.display = "block"; }
    }*/
	
		(function($) {
	/*  ------------------------------------------------------------------
	    Load Function ---------------------------------------------------- */
	    $.fn.loadFct = function () {
			var $offer = $("#offer");
			$offer.addClass("hide");
			$("#learn").hover(
				function(){ $offer.removeClass("hide"); },
				function(){ $offer.addClass("hide"); }
			).show();	
			
			$('#flash_detect').show();
		
		return this;

    	};

	})(jQuery);