$(document).ready(function(){
  /*
  $('#bg').html('<img src="http://farm1.static.flickr.com/43/120551852_c26865102f_z.jpg" />');
  $.ajax({
    url:'http://api.flickr.com/services/rest/?method=flickr.test.echo&name=value',
    cache:false,
    dataType:'json',
    success:function(data){
      alert(data);
    }
  });
  argbeat = function(set) {
    w = $('#bg').width();
    h = $('#bg').height();
    ww = $(window).width();
    wh = $(window).height();
    s = Math.max(ww/w,wh/h);
    w = Math.ceil(s*w);
    speed = 1000;
    $('#bg img').animate({width:w},speed);
  }
  $(window).resize(argbeat);
  argbeat();
  */
});

