$(function(){

$("a[rel*='lightbox'], .gallery a").lightBox({
	imageLoading:			'/content/script/lightbox/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
	imageBtnPrev:			'/content/script/lightbox/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
	imageBtnNext:			'/content/script/lightbox/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
	imageBtnClose:			'/content/script/lightbox/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
	imageBlank:				'/content/script/lightbox/images/lightbox-blank.gif'			// (string) Path and the name of a blank image (one pixel)
});

$(".gallery .gallery-caption").hide();

$("#faq dd").hide();

$("#faq dt").click(function(){
	$(this).next().slideToggle("slow");
});

$(".trip .map").hide();

if (jQuery.browser.msie) {
	$(".map-button").click(function(){
		if( $(this).siblings(".map").is(":hidden") ) {
			$(this).html("Hide map");
			$(this).siblings(".map").show();
		} else {
			$(this).html("Show map");
			$(this).siblings(".map").hide();
		}
	});
} else {
	$(".map-button").click(function(){
		if( $(this).siblings(".map").is(":hidden") ) {
			$(this).html("Hide map");
			$(this).siblings(".map").slideDown();
		} else {
			$(this).html("Show map");
			$(this).siblings(".map").slideUp();
		}
	});
}

});