$(function(){
  if (typeof(_gaq) !== "undefined") {
    $("#main-image a").click(function(){ _gaq.push(['_trackPageview','/top/flash/main']); });
    $("#tumbs a").mouseover(function(){ _gaq.push(['_trackPageview','/top/flash/sub-over']); })
                 .click(function(){ _gaq.push(['_trackPageview','/top/flash/sub']); });
  } else if (typeof(console) !== "undefined") { // local preview for Firefox, Chrome, Safari...
    $("#main-image a").click(function(){ console.log("main-image clicked"); });
    $("#tumbs a").mouseover(function(){ console.log("tumbs image mouseover"); })
                 .click(function(){ console.log("tumbs image clicked"); });
  }/* else { // local preview for IE
    $("#main-image a").click(function(){ alert("main-image clicked"); });
    $("#tumbs a").mouseover(function(){ alert("tumbs image mouseover"); })
                 .click(function(){ alert("tumbs image clicked"); });
  }
  */
});

