function otrosReels(id_player){

	$('#el_video iframe:first').remove();

    $("#el_video").html('<iframe src="http://player.vimeo.com/video/' + id_player + '?title=0&amp;byline=0&amp;portrait=0&amp;color=bf24b0&amp;autoplay=1" width="480" height="324" frameborder="0" id="video_feels_'+id_player+'"></iframe>'); /* cargamos el player iframe */

}

function abrirPopUp(obj){
		var direccion = '';
		
		if(obj.href) direccion = obj.href;
		else direccion = obj;
		if(obj.id == 'skemboo_recomendar'){ 
			ancho = 520;
			alto = 345;
		}
		else{
			ancho = 590;
			alto = 400;
		}
      	nueva = window.open(direccion, 'PopUpSkemboo', "height="+alto+",width="+ancho+",scrollTo,resizable=0,scrollbars=0,location=0");
		return false;
}

$(document).ready(function(){
	
	//$('.sidebar').height($(document).height()-280);
	$('.video_info, .video_destacado').hover( 
		function () {
    		$(this).find('.info_video').stop().animate({ top: '-100px'});
  		}, 
  		function () {
    		$(this).find('.info_video').stop().animate({ top: 0});
  		}
	)
	
	$('.board').hover( 
		function () {
    		$(this).find('.info_board').stop().animate({ top: '-100px'});
  		}, 
  		function () {
    		$(this).find('.info_board').stop().animate({ top: 0});
  		}
	)


	$('.equipo li').hover( 
		function () {
    		$(this).find('.info_equipo').stop().animate({ top: '-114px'});
  		}, 
  		function () {
    		$(this).find('.info_equipo').stop().animate({ top: 0});
  		}
	)
	

});
