$(document).ready(function() {
	if ($(".contact-form").length > 0) {
		$(".submit-button").click(function() {
			var boolSubmit = true;
			$(".contact-form .required").each(function() {
				if ($("input",this).val() == "") {
					$(".error-message",this).fadeIn("fast");
					boolSubmit = false;
				} else {
					$(".error-message",this).fadeOut("fast");
				}
			});
			if (boolSubmit) {
				$(".contact-form")[0].submit();
			}
		});
	}
	if ($(".book-shelf .book").length > 0) {
		$(".book-shelf .book .title").toggle(function() {
			$(this).parent().find(".description").slideDown("fast");
			$(this).addClass("active");
		},function() {
			$(this).parent().find(".description").slideUp("fast");
			$(this).removeClass("active");
		});
	}
	if ($("#flashholder").length > 0) {
		$('#flashholder').flash({
				swf: 'flash/index.swf',
				width: 708,
				height: 550,
				wmode: 'transparent',
				menu: false
		});
	}
});
