
/**
* Clase GEE
*/
var GEE_Slide = new Class(
	{
		Implements : [ Options, Events ],
		options : {
			imagen1 : '',
			imagen2 : '',
			backgroundColor : 'transparent',
			border : 'none',
			width : '300px',
			height : '300px',
			top	:	'97%',
			left : '53px',
			Slider : {}
		},
		initialize : function( options )
		{
			this.setOptions( options );
			this.createSlider();
		},

		createSlider : function()
		{
			var self = this;
			var divMain = new Element( 'div', { 'id' : 'GEESlider' }).inject( document.body );
			$( 'GEESlider' ).setStyles(
				{
					'border' : self.options.border, 
					'position' : 'fixed',
					'top' : self.options.top,
					'left' : self.options.left,
					'background-color' : self.options.backgroundColor,
					'background-image' : 'url(' + self.options.imagen2 + ')',
					'background-position' : 'right center',
					'background-repeat' : 'no-repeat',
					'width' : self.options.width,
					'height' : self.options.height,
					'margin-top' : '-20px',
					'z-index' : '99999999',
					'text-align' : 'right',
					'cursor' : 'pointer'
				}
			);
			var  IMG = new Element( 'img', { 'id' : 'gee_logo', 'src' : self.options.imagen1 } ).inject( divMain );
			$( 'GEESlider' ).addEvents(
				{	
					'mouseenter' : function( e )
					{
						var e = new Event( e );
						$( 'gee_logo' ).fade('out');
						this.set('morph',{ duration: 100 ,transition: Fx.Transitions.Sine.easeOut }).morph({ height: self.options.heingt, width:  413 });
						e.stop();
					},
					'mouseleave' : function( e )
					{
						var e = new Event( e );
						this.set('morph',{ duration: 100 ,transition: Fx.Transitions.Sine.easeOut }).morph({ height: self.options.heingt, width:  self.options.width });
						e.stop();
						$( 'gee_logo' ).fade( 'in' );
					},
					'click' : function()
					{
						window.open( self.options.link, '_blank' );
					}
				}
			);
		}
	}
);

/**
*	Configuracion
*/
/*
window.addEvent(
	'domready',
	function()
	{
		var sliderGEE = new GEE_Slide(
			{	'link' : 'http://www.gee.com.mx?in=pleca',
				'imagen1' : 'http://www.quien.com/images/paso1.png',
				'imagen2' : 'http://www.quien.com/images/paso2.png',
				'left' : '0px',
				'width' : '53px',
				'height' : '40px'
			}
		);
	}
);
*/
