// JavaScript Document
google.load("jquery", "1.2.6");
google.load("jqueryui", "1.5.3");


google.setOnLoadCallback(function() {
	 
$(".still_a").click(function () {
      $('.play_a').show();
      $('.still_a').hide();
      $(".play_a").attr({src: "images/device_animations/attenuator.gif"})
});
$(".play_a").click(function () {
      $('.play_a').hide();
      $('.still_a').show();
});

$(".still_b").click(function () {
      $('.play_b').show();
      $('.still_b').hide();
      $(".play_b").attr({src: "images/device_animations/point_absorber.gif"})
});
$(".play_b").click(function () {
      $('.play_b').hide();
      $('.still_b').show();
});

$(".still_c").click(function () {
      $('.play_c').show();
      $('.still_c').hide();
      $(".play_c").attr({src: "images/device_animations/owsc.gif"})
});
$(".play_c").click(function () {
      $('.play_c').hide();
      $('.still_c').show();
});

$(".still_d").click(function () {
      $('.play_d').show();
      $('.still_d').hide();
      $(".play_d").attr({src: "images/device_animations/owc.gif"})
});
$(".play_d").click(function () {
      $('.play_d').hide();
      $('.still_d').show();
});

$(".still_e").click(function () {
      $('.play_e').show();
      $('.still_e').hide();
      $(".play_e").attr({src: "images/device_animations/overtopping.gif"})
});
$(".play_e").click(function () {
      $('.play_e').hide();
      $('.still_e').show();
});

$(".still_f").click(function () {
      $('.play_f').show();
      $('.still_f').hide();
      $(".play_f").attr({src: "images/device_animations/spd.gif"})
});
$(".play_f").click(function () {
      $('.play_f').hide();
      $('.still_f').show();
});


});