$(document).ready(function() {
	
	$('#gallery-box').jcarousel();
	
	$('.auction_search_box').focus(function() {
	   if ($(this).attr('value') == 'Lot no. Keyword') {
		   $(this).attr('value', '');
	   }
	});
	
	$('.auction_search_box').blur(function() {
		if ($(this).attr('value') == '') {
			$(this).attr('value', 'Lot no. Keyword');
		}
	});
	
	$('.results_search_box').focus(function() {
		if ($(this).attr('value') == 'Lot no. Keyword') {
			$(this).attr('value', '');
		}
	});
	
	$('.results_search_box').blur(function() {
		if ($(this).attr('value') == '') {
			$(this).attr('value', 'Lot no. Keyword');
		}
	});
	
	$('#option-list ul li a').click(function() {
		imgID = $(this).html();
		
		aID = $(this).attr('id');
		aID = aID.replace("lotImg_", "");
		aID = aID.replace("_" + imgID, "");
		
		aID = aID.split("-");
		
		auctionID = aID[0];
		lotID = aID[1];
		
		imgPath = "/img/data/auctions/" + auctionID + "/detail/" + lotID + "_" + imgID + ".jpg";
		largeImgPath = "/img/data/auctions/" + auctionID + "/detail/" + lotID + "_" + imgID + "_large.jpg";
		
		$('#img-detail-main-image').attr("src", imgPath);
		
		$('#zoom-container a').attr('href', largeImgPath);
	});
	
	$('.main-img-link').click(function() {
		aID = $(this).attr('id');
		aID = aID.replace("mainImgLink_", "");
		
		aID = aID.split("-");
		
		auctionID = aID[0];
		lotID = aID[1];
		subLotLower = aID[2].toLowerCase();
		subLotUpper = aID[2].toUpperCase();
		
		imgPath = "/img/data/auctions/" + auctionID + "/A" + lotID + subLotUpper + ".jpg";
		largeImgPath = "/img/data/auctions/" + auctionID + "/large/" + lotID + subLotLower + ".jpg";
		
		$('#img-detail-main-image').attr("src", imgPath);
		$('#zoom-container a').attr('href', largeImgPath);
	});

	$("#UserNotificationAllauctions").click(function() {
		var checked_status = this.checked;
		$(".tocheck input").each(function() {
			this.checked = checked_status;
		});
	});
	
	$("select#SearchAuction").change(function() {
		window.location = "/lots/previousSalesDatabase/" + $("select#SearchAuction").val();
	});
	
	$(".price-form input[value=telephone]").click(function() {
		var priceField = $(this).parent().children("input.price-box");
		priceField.attr("disabled", true); 
	});
	
	$(".price-form input[value=commission]").click(function() {
		var priceField = $(this).parent().children("input.price-box");
		priceField.removeAttr("disabled");
	});
	
	$("#auction-boxes-collapse a").click(function() {
		if ($("#auction-boxes").hasClass("collapsed")) {
			$("#auction-boxes").animate({
				height: 280
			}, 0, function() {
				$("#auction-boxes").removeClass("collapsed");
				$("#auction-boxes-collapse img").attr("src", "/img/collapse.gif");
			});
		} else {
			$("#auction-boxes").animate({
				height: 108
			}, 0, function() {
				$("#auction-boxes").addClass("collapsed");
				$("#auction-boxes-collapse img").attr("src", "/img/expand.gif");
			});
		}
	});
});
