// JavaScript Document
var c=0
var s
function photoGallery()
{

if (c%5==0){
document.getElementById('photo-gallery').src = "http://www.usfq.edu.ec/PublishingImages/banner%20js/3.jpg";
document.getElementById('link').href = "http://www.usfq.edu.ec/Documents/TourVirtual/TourVirtual.html";
}
if (c%5==1){
document.getElementById('photo-gallery').src = "http://www.usfq.edu.ec/PublishingImages/banner%20js/1.jpg";
document.getElementById('link').href = "http://www.usfq.edu.ec/GAIAS/Paginas/GAIAS.aspx";

}
if (c%5==2){
document.getElementById('photo-gallery').src = "http://www.usfq.edu.ec/PublishingImages/banner%20js/2.jpg";
document.getElementById('link').href = "http://tiputini.usfq.edu.ec";
}
if (c%5==3){
document.getElementById('photo-gallery').src = "http://www.usfq.edu.ec/PublishingImages/banner%20js/4.jpg";
document.getElementById('link').href = "http://portal.usfq.edu.ec/virtual/";
}
c=c+1
s=setTimeout("photoGallery()",3000)


}


function favorito(){
//IE
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url="http://www.usfq.edu.ec/"; 
var titulo="Universidad San Francisco de Quito"; 
window.external.AddFavorite(url,titulo);
}
//Para Firefox
else {
if(navigator.appName == "Netscape")
//Hay que modificar el nombre por el de vuestra pagina
window.sidebar.addPanel("Universidad San Francisco de Quito", "http://www.usfq.edu.ec","");
}
}
