var trClone = '';

$(function(){
	trClone = $('.container_for_insert_product_tuples tr:first').clone().find('input').val('').end();
	trClone.find('input').val('');
	$('#add_another').click(function(){
		$('.container_for_insert_product_tuples').append(trClone.clone());	
		return false;
	});
	$('.remove_korte_parina').live('click',function(){
		$(this).parent().parent().remove();
	});
	$('.add_size').live('click',function(){
		$(this).parent().find('.add_size,.picture_size_dd').hide();
		$(this).parent().find('.select_existing_size, .add_size_input').show();
	});
	$('.select_existing_size').live('click',function(){
		$(this).parent().find('.select_existing_size,.add_size_input').hide();
		$(this).parent().find('.picture_size_dd,.add_size').show();	
	});
});
