/*jQuery ( function ( $ ) {
	$( '.videoSignos' ).click ( function() {
		idvideo = $(this).attr('rel');
		$('#'+idvideo).toggle();
	} );
	
	$( '.closeVideo' ).click ( function() {
		idvideo = $(this).attr('id');
		$('#'+idvideo).toggle();
	} );
} );*/

/*
function showVideoSignos ( id ) {
	jQuery('#'+id).toggle();
}

function closeVideoSignos ( id ) {
	jQuery('#'+id).toggle();
}
*/
$(document).ready(function(){
	$(".leng-signos").click(function(){
		var idVideo = $(this).attr("class");
		var aux = idVideo.split(" ");
		
		jQuery('#'+aux[1]).toggle();
	});

	$(".closeVideo").click(function(){
		var idVideo = $(this).attr("class");
		var aux = idVideo.split(" ");
		
		jQuery('#'+aux[1]).toggle();
	});
});