$(document).ready(function() {
  $("div#gallery li a").click( function() {
    $("div#gallery li a").removeClass("active");
    $(this).addClass("active");
    var changeSrc = $(this).attr("href");
    var tempImg = $("#eyeCatch").clone().attr("id", "eyeCatch2");
    $("#eyeCatch").after(tempImg);
    $("#eyeCatch").hide(
      function() {
        $(this).attr("src", changeSrc);
        $(this).fadeIn();
        $("#eyeCatch2").fadeOut().remove();
      }
    );
    return false;
  });
  
  $('body.entryBody ul#wear li a').click(function(){
		window.open(this.href, 'zoom','width=963,height=550,scrollbars=yes,status=no');
		return false;
	});
  
});
