// JavaScript Document
/**
 *  Simple accordion
 */
$.fn.rfMenu = function(options) {  
 	var defaults = {  
		submenuHover: ""	// naam van de display component	
	};  
	
	var $container = $(this);
	
	// extend options with the default options
	var options = $.extend(defaults, options);  
	
	return this.each(function(){ 
		$(this).css({"z-index":10000})
		$(this).children("li.nivo-2").hover(function(){
			$(this).addClass("hover-state");
		},function(){
			$(this).removeClass("hover-state");
		});
		
		return this;
	});  
};
