$(function(){
  $('#imgcontrols').css('text-align','center');
  $('#imgcontrols img')
  .css('cursor','pointer')
  .click(function(){
    $(this).fadeOut('normal',function(){
      if(!iphone) {
        $('#imgcontrols img').not(this).fadeIn('normal');
        $('#video1,#video2,#video3').hide();
        $('#'+$(this).attr('targetid')).show();
      } else {
        $.each($('video').get(),function(i,e){
          e.pause();
        });
        $('#imgcontrols img').not(this).fadeIn('normal');
        $('#alt_video1,#alt_video2,#alt_video3').hide();
        var vid=$('#alt_'+$(this).attr('targetid')).show().get(0);
        try{vid.currentTime=0;}catch(e){}
        try{vid.play();}catch(e){}
      }
    });
  });
  //if(!iphone)
  $('#imgcontrols img:first').click();
});
