$( document ).ready( function(){
	
	// muestra - oculta lista ciudades
	$( 'div.footer ul' ).toggle( function(){
	
		$( this ).css( {
		
			'top' : -100,
			'height' : 125,
			'background-position' : '0 0'
		
		} );
	
	}, function(){
	
		$( this ).css( {
		
			'top' : 5,
			'height' : 20,
			'background-position' : '0 -108px'
		
		} );
	
	} );	
	
	// info ciudad país
	$( 'div.footer ul li' ).mouseover( function(){
	
		var ciudad_pais = $( this ).attr( 'title' );
		var direccion = $( this ).attr( 'rel' );
		
		if( ciudad_pais != 'escoja' ){
		
			$( 'p.ciudad_pais' ).html( ciudad_pais );
			$( 'p.direccion' ).html( direccion );
		
		}
		
	
	} );
	
	// js para botón 'ver video' debe estar fuera de el js de video principal. porque no lo reconoce por alguna razón desconocida
	$( 'span#ver_video_principal' ).click( function(){
	
		$( 'div#cont_video_principal' ).fadeIn( 500 );
	
	} );
	
} );











