﻿(function($) {
    $.fn.neoHoverMarkup = function(options) {
        var defaults = {
            item: 0,
            disable: true,
            auto: false,
            mode: 'default'
        };

        var options = $.extend(defaults, options);
        var $this = $(this).eq(options.item)

        $this.children(0)
			.trigger('mouseenter')
			.unbind('mouseenter')
			.unbind('mouseleave')
        
        $this.parent().addClass('on');

        if (options.disable) {
            $this.removeAttr('href')
            $this.children(0).css('cursor', 'default');
        }
    };
})(jQuery); 	
