$(document).ready(function() {
  //$('#big_images span').hide();
  //$('#big_images span:first').show();
 // $('#small_images img').vspace(2);
    $("#other_img img").click(function () {
      //$('#big_images span').fadeOut("slow");
      $('#midlle_img').hide();
	  path = this.src;
	  path = path.replace("small", "midlle");
	  path = path.replace("small", "midlle");
	  $("#midlle_img").attr("src", path);
      $('#midlle_img').fadeIn(500);
    });
	
	$('#info_cart_view').click( function() {
     //$('#helps').show();
     $('#info_cart').toggle();
    });
	TkanChange();
	$('#tkan').change( function() {
	  old_id = $('.inner_product_view').attr("id");
	  id=$(this).val();
	  $('#'+old_id).removeClass('inner_product_view');
	  $('#'+old_id).addClass('inner_product');
	  $('#'+id).removeClass('inner_product');
	  $('#'+id).addClass('inner_product_view');
	  TkanChange();
	  });
	

	
	
	$("a[rel='imagegroup']").colorbox();
	
});

function TkanChange() {
	$('.inner_product_view').show();
	$('.inner_product').hide();
}


function BigImgShow() {
  path = $("#midlle_img").attr("src");
  path = path.replace("midlle/", "");
  path = path.replace("small/", "");
  path = path.replace("midlle_", "");
  window.open(path,'pic','width=600,height=800');
}
