$(function() {

	$('a.lightbox').lightBox(); // Select all links with lightbox class

	$("#zoom1").gzoom({sW: 428,
		sH: 343,
		lW: 1200,
		lH: 1200, 
		lightbox: true
	});

	// GALLERY Use AJAX to load a new image into the main viewport, if supported.
	$('a.project_thumbnail').click(function() {
	
		// Hide the current image to show the "loading" background
		$('.image_box_loader').show();
		$('img#gallery_hero_image').hide();
		
		// Load new image in the background
		var img = new Image();
		
		img.onload = function() { 	
			$('img.image_box_loader').hide();
			$('img#gallery_hero_image').attr("src", img.src);
			$('img#gallery_hero_image').fadeIn(1000);
			$('#gallery_hero_link').attr("href", img_link);
		}
		
		// Load image
		img.src = $(this).attr("image") + "resize/393/393/";
		var img_link = $(this).attr("image") + "maxsize/900/900/";
		
		return false;
	});

    // Initialize Galleria
	$('#galleria').galleria({
	    lightbox: true
	});


	// TRACKING Use AJAX to load a new image into the main viewport, if supported.
	$('a.gallery_thumbnail').click(function() {
	
		//alert('here');
	
		// Hide the current image to show the "loading" background
		$('.image_box_loader').show();
		$('img#gallery_hero_image').hide();
		
		// Load new image in the background
		var img = new Image();
		
		img.onload = function() { 	
			$('img.image_box_loader').hide();
			$('#gallery_hero_link').attr("href", img_link);
			$('img#gallery_hero_image').attr("src", img.src);
			$('img#gallery_hero_image').fadeIn(1000);
		}
		
		// Load image
		img.src = $(this).attr("image") + "resize/1200/1200/";
		var img_link = $(this).attr("image") + "maxsize/900/900/";
		
		return false;
	});

});

$(document).ready(function(){

	
});
