$(document).ready(function(){
  
  /* External window for rel=external links */
  $('a[rel="external"]').click(function(){
    window.open( $(this).attr('href') );
    return false;
  });
  
  $('ul.thumb_list a img').click(function(e){
    var thumb_url = $(this).attr("src");
    var new_thumb_url = thumb_url.replace("product_thumbnails", "products");
    var main_pic = $("div#main_image img");
    
    var main_pic_url = main_pic.attr("src");
    var new_main_pic_url = main_pic_url.replace("products", "product_thumbnails");
    $(this).attr("src", new_main_pic_url);
    main_pic.attr("src", new_thumb_url);
    
    e.preventDefault();
  });
  
  // Nav drop down
  $("div#masthead li.nav_toys").hover(function(){
    $("div#masthead li.nav_toys a:first").addClass("current");
    $("div#masthead li.nav_toys ul").fadeIn();
  }, function(){
    $("div#masthead li.nav_toys a:first").removeClass("current");
    $("div#masthead li.nav_toys ul").fadeOut();
  });
  
  $("div.zoom a").lightBox();
  
  $("a#video_pop").click(function(e){
    var url = $(this).attr("href");
    open(url, "popUp", "status=0,toolbar=0,width=660,height=405,scrollbars=0,resizable=0");
    e.preventDefault();
  });
  
});

