$(document).ready(function() {
  $("td.product_details_image").children("img").each(function() {
    $(this).bind("click", function() {

      $("img#product_image").parent("a").attr("href", $(this).attr("id"));
      $("img#product_image").attr("src", $(this).attr("class"));

    });
  });

  $("table.product_variants").find("td.cb").children(":input[type='radio']").each(function() {
    $(this).bind("change focus blur", function() {

      $("img#product_image").parent("a").attr("href", $(this).parent().siblings("td").children("label").attr("name"));
      $("img#product_image").attr("src", $(this).parent().siblings("td").children("label").attr("class"));
      $("h1.price[id='product_price']").html('&euro; '+ $(this).parent().siblings("td").children("label").attr("id"));

    });
  });

	$.ImageBox.init(
		{
			loaderSRC: '/images/loading.gif',
			closeHTML: '<img src="/images/close.jpg" />'
		}
	);
});