// JavaScript Document
$(document).ready(
	function(){
	
	/*Efecto rollover menu-----------------------------------------------------------------------*/
			$('#menu_principal a').each(
				function(){					
					if(!$(this).hasClass('a')){
						$(this).hover(
									  function(){$(this).css({'cursor':'pointer'}).addClass('a');},
									  function(){$(this).removeClass('a');}
									  )
					}
				}
					
			);
	/*Efecto rollover Boton Apuntate-------------------------------------------------------------*/
		$('#btn_apuntate').hover(
		  function(){$('#btn_apuntate').css({'cursor':'pointer'}).stop(true, true).animate({backgroundPosition: '0 -80px'},500,'easeout');},
		  function(){$('#btn_apuntate').stop(true, true).animate({backgroundPosition: '0 0'},500,'easeout');}
		  )
	}
);

/*Funcion para el desplegable de textos*/
function slide(id){
	$('#'+id).next().slideToggle("slow");
}
				  