$(function($){

    $.fn.jlanguage = function(options){
    
        options = $.extend({
			speed : 600,
			easing : 'easeOutBounce',
			object : null
		}, options);
	
        
        return this.each(function(){
       
            var linker = $(this)
		
            $(this).hover(function() {
				$($(options.object)).css({
	                left: $(this).position().left ,
	                top:  $(this).outerHeight() + 12
	            	}).slideDown(options.speed,options.easing);
	            });
			$($(options.object)).hover( function (){
				
				
			},function(){
				
				$($(options.object)).slideUp('fast');
				
			});
   
        });
		
			function  clickfunction(){
			
			modastart();
			
			//calceling the url swap and other possibles events.
			return false;
			
		}
		
		//embedding the click function
		return this.mouseout($(options.object).mouseout());
		
    }
    
}(jQuery));

/* ################################################################

 Script Developer: Felipe Assuncao - Untill

 //With collaboration of Revson Antonio.

 ################################################################ */
