var tiempoAnimacion = 250;
var xGrande, yGrande, mGrande;
var xFlash, yFlash, mFlash, sFlash;

function setDimensionesFlash(x,y) {
  xFlash = x;
  yFlash = y;
}

function calculaDimensiones() {
  cWidth = $("#contenedorFotos").width();
  sFlash = $("#content").css("min-height");
  sFlash = sFlash.substr(0, sFlash.length - 2);
  mFlash = (eval(sFlash) - yFlash) / 2;

  xGrande = cWidth;
  yGrande = yFlash * xGrande / xFlash;
  mGrande = mFlash * xGrande / xFlash;
  $("#foto1").width(xGrande + "px").height(yGrande + "px");
  $("#foto1").css("margin-top", mGrande + "px");
  $("#foto1").css("margin-bottom", (mGrande / 2) + "px");
}

$(document).ready( function() {
  calculaDimensiones();
  $(window).resize( function() { calculaDimensiones(); });
  $(window).load( function() { calculaDimensiones(); });
});
