/*
 * Author:		Ronan Sprake [ronansprake@gmail.com]
 * Project: 	Growing Connections Project
 */
 
 /* General Config */
/* ********************************************************************************* */

var BASE_URL = '';

/* Document onload events */
/* ********************************************************************************* */

$(function() {
	
	/* Initiate and bind events */
	/* ********************************************************************************* */
	
	// banner slideshow
	$('#slideshow').innerfade({
		speed: 800,
		timeout: 6000,
		containerheight: '170px'
	});
	
	if ($('.home').length > 0) {
		 $.ajax({
			type: "POST",
			url: "/assets/gallery-images.php",
			success: function(){
				/* cache the gallery when the user first hits the homepage == requires a better fix == */
			}
		});
	}
	
	if ($('.gallery').length > 0) {
		$('#gallery').html('<img src="assets/images/loading.gif" alt="loading images..." />');
		 $.ajax({
			type: "POST",
			url: "/assets/gallery-images.php",
			success: function(e){
				$('#gallery').html(e);
				$('#gallery a').lightBox();
			}
		});
	}
	
	// documents and external links to open in new window
	$("a.newwindow").attr('target','_blank').attr('title','(This link opens in a new window)');
	$("a[href$='pdf']").attr('target','_blank');
	
});

