
if(typeof ($.AWA) == "undefined") {
	jQuery.AWA = Object;
}

//Remove the margin from the 4th item of every thumbnail row to stop it wrapping onto the next line
jQuery.AWA.removeNthThumbnailMargin = {
	init: function(){
		//jQuery('.about-us.team-members .article .team-list dl:nth-child(3n)').addClass('no-margin');
		
	} // End init
}

jQuery.AWA.bubbleLinkToParent = {
	init: function(){
	//Pass the link from the link to the parent div
	function gotoGalleryTooltipLink(galleryItem) {
		window.location.href=galleryItem;
	}
	jQuery('body.landing-page div.article div.entries div').each( function(intIndex){
		jQuery(this).bind ('click',function(){
			gotoGalleryTooltipLink(jQuery(this).children('h2').children('a').attr('href'));
		});
	});
	
		} // End init
}


jQuery(document).ready(function(){
	jQuery.AWA.bubbleLinkToParent.init();
	jQuery.AWA.removeNthThumbnailMargin.init();
	jQuery.gaTracker('UA-12072751-1'); //Initialise Google Analytics tracking
});	