
	var secim1 = "";
	var secim2 = "";

	$(document).ready(function() {

		$('.pipchaImg').click(function() {
			var index = $(this).attr('pipchaIndex');

			if(secim1 == index || secim2 == index) {
				if(secim1 == index) {
					secim1 = "";
					$('#pipchaIndex1').val('');
					$(this).removeClass('pipSec');
					$(this).addClass('pipNormalImg');
				}

				if(secim2 == index) {
					secim2 = "";
					$('#pipchaIndex2').val('');
					$(this).removeClass('pipSec');
					$(this).addClass('pipNormalImg');
				}
			} else {
				if(secim1 == '' || secim2 == '') {
					if(secim1 == '') {
						secim1 = index;
						$('#pipchaIndex1').val(index);
						$(this).removeClass('pipNormalImg');
						$(this).addClass('pipSec');						
					} else if(secim2 == '') {
						secim2 = index;
						$('#pipchaIndex2').val(index);
						$(this).removeClass('pipNormalImg');
						$(this).addClass('pipSec');
					}
				}
			}
		});
		
	});
