/*------------------------------------------------------------------------------------------------------------------------------ 
 											Funcións específicas para Rita Pajarita
------------------------------------------------------------------------------------------------------------------------------- */



/*
	Esta función abre un shadowBox coas imaxes ou vídeos de ritaPajarita
	
*/
function abreBox(tipo,url, titulo){
if(tipo == "img")
Shadowbox.open({
        content:    url,
        player:     tipo,
        title:      titulo       
    });

else 
Shadowbox.open({
        content:    url,
        player:     tipo,
        title:      titulo,
		height:		344,
		width:		425
    });
}

