$(document).ready(function () {

	$('#photoGallery a').lightBox();
	$('#photoGallery a:eq(0)').addClass('galleryTrigger');


});

function isHomePage(){
	if($("body.home").length > 0){
		return true;
	}
	else{
		return false;
	}
}

