﻿/**
* ------------------------------------------------------------------------------------------------
* @author 	Leandro Mancini leandro@neotix.com.br
* @company  Neotix - Agência Interativa http://www.neotix.com.br/
* @version 	0.1
* ------------------------------------------------------------------------------------------------
*/

(function($){
	$.fn.neoHoverNavEnviar = function(options)
	{
		var defaults = {
			queue: false,
			duration: 500,
			easing: 'easeOutExpo',
			bgColor: '#96730f',
			bgColorHover: '#162145'
		};

		var options = $.extend(defaults, options);
		
		return this.each(function(){
			var $this = $(this);
			var data = $this.html();
			var newdata = $(document.createElement('span')).html(data);
			
			$this.empty().append(newdata);

			$this.bind('mouseenter', function(e){
				$(this).stop().animate({
					backgroundColor: options.bgColorHover
				},{
					queue: options.queue,
					duration: options.duration
				});
				
			}).bind('mouseleave', function(e){
				$(this).stop().animate({
					backgroundColor: options.bgColor
				},{
					queue: options.queue,
					duration: options.duration
				});
			});
		});
	};
})(jQuery); 
