;(function(jQuery) {

	
	var defaults = {
	};
	
	//extend the fn for the methods
	jQuery.fn.ifwshlmenu = function(settings) {
		
		jQuery.extend(this,{
			current: 0,

			initialize: function() {

				var item = this;
				
				jQuery(this).mouseenter(function(){
					jQuery(this).addClass('ifwshlmenu-highlight');
				}).mouseleave(function(){
					jQuery(this).removeClass('ifwshlmenu-highlight');
				});
				
			}
		});

		jQuery.extend(this, defaults, settings);
		
		return this;
	};
})(jQuery);
