/*
 * http://www.birthdayinabox.com/
 * Widerfunnel 2010
 *
 * Requires: jQuery, hoverIntent, wf.jquery.menu
*/
function doFunEx2Init() { // was jQuery(function() { ...
	var $ = jQuery;
	$(".wf-nav").wfmenu({
	    mouseOver: function(li) {
	        if (!li.hasClass("wf-content-moved")) {
	            var selected = li.find("a").attr("rel");
	            $menuContainer = li.find(".wf-container");
	            // NOTE: The anchor rel has the same value as the div ID
	            $("#" + selected).appendTo($menuContainer);
	            li.addClass("wf-content-moved");
	        } // if wf-content-moved
	    },
	    mouseOut: function(li) { }
	});  // ".wf-nav".wfmenu
		
} // doFunEx2Init()


