$(function(){

	// Look Books \\
	$("#look-book-container").appendTo("body");
	$("#look-book-button").click(function(event){
		$("#look-book-content").toggle();
		if ($("#look-book-content").css("display") == "block") {
			$("#look-book-button").css("background-position", "0 -17px");
			if (browser != "ie6") {
				$("body").css("padding-bottom", "100px");
			} else {
				window.scrollBy(0, 100);
			}
		} else {
			$("#look-book-button").css("background-position", "0 0");
			if (browser != "ie6") {
				$("body").css("padding-bottom", "0");
			}
		}
	});

	$("#look-book-link").click(function(event){
		//$("#look-book-button").trigger("click");
		if ($("#look-book-content").css("display") != "block") {
			$("#look-book-content").show();
			$("#look-book-button").css("background-position", "0 -17px");
			if (browser != "ie6") {
				$("body").css("padding-bottom", "100px");
			}
		}
	});

	$("#look-book-form").hide();
	
	$("#look-book-download").click(function(event){
		event.preventDefault();
		$("#look-book-form").show();
	});

	// Form Close Button \\
	$("<img>").attr("id", "look-book-form-close").attr("src", "/images/commons/look-book-form-close.png").appendTo("#look-book-form-header").click(function(event){$("#look-book-form").hide();});

});