// JavaScript Document
$(function () {
		$('*[class*="open_"] a').each (function () {
			if ($(this).parent().hasClass('left')) {
				$(this)
					.unbind('click')
					.click (function () {
						$(this)
							.parent()
								.next()
									.next('div')
										.slideDown('slow');
						$(this)
							.parent().slideUp('slow');
						return false;
					});
			}
		});
		$('*[class*="close_"] a').each (function () {
			$(this)
				.unbind('click')
				.click (function () {
					$(this)
						.parent()
							.parent()
									.slideUp('slow');
					$(this)
						.parent()
							.parent()
								.prev()
									.prev().slideDown('slow');
					return false;
				});
		});
	});
