/* -------------------------------------------------------------------

	Hans Dreesen
	Boondoggle
	
	This JavaScript file collects all general functions used
	throughout the site, as well as some smaller specific
	functions.

------------------------------------------------------------------- */



// when the document is ready to be traversed and manipulated...
$(document).ready(function(){
	
	// LINK HANDLER
	// when you click on a link with class externalLink
	$("a.externalLink").click(function(){
		// open a new window with the link's location
		window.open($(this).attr("href"));
		// and do nothing after (to prevent the link from actually firing)
		return false;
	});
	
	
	// THICKBOX IMAGE GALLERY
	// handle the links to a gallery of images in the navigation
	$("a.gallery:not(:first), a.gallery .counter").hide();
	
	
	// GOOGLE ANALYTICS
	$.gaTracker("UA-5981338-4",
		{ 
			external:	"/external/", 
			mailto:		"/mailto/", 
			download:	"/downloads/", 
			extensions:	["pdf","doc","xls","csv","jpg","gif", "mp3", "swf","txt","ppt","zip","gz","dmg","xml"]
		} 
	);
	
	
});

