$(function(){

	// Look Books \\
	$("#look-book-container").appendTo("body");
	$("#look-book-container").hide();
	
	if (navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod') {
		$("#look-book-container", parent.document.body).css("position", "static");
		$("#look-book-container").css("display", "none");
		$("#look-book-container").css("visibility", "hidden");
		$("#look-book-link, #nav-look-book").css("display", "none");
	}
	
	$("#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();
		$("#lb-form").attr("src", "http://www.willoughbydesign.com/look-book/look-book-form/");
		$("#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();});

});
