//this file has dependencies on JS variables being set prior to it being called.
//currently used in: photos.html
		
	$("#galleryContent").galleria({
		width: 600,
		height: 520,
		show: photo_index,
		thumbnails: show_thumbnails,
		history: true,
		transition: "fade",
		dataSource: galleryData
	}); 			

	var sponsorShowed	= 0;	
	var sponsorBanner	= {
		showBanner: function(){
			if(sponsorShowed==0 && show_splash){
			    if (show_thumbnails === false) {
				    $(".galleria-container").append("<div id='sponsorBanner' style='position:absolute; height: 450px; width: 600px; z-index: 1001; top: 4px;'></div>");	
			    } else {
			        $(".galleria-container").append("<div id='sponsorBanner' style='position:absolute; height: 450px; width: 600px; z-index: 1001; top: 70px;'></div>");	
			    }
				$("#sponsorBanner").append("<div id='sponsorBannerContent' style=\"color: #fff; height: 600px;\"></div>").delay(3200).fadeOut();
				if (typeof(dfp_active) != 'undefined' && dfp_active != "") {
                    DFP.pushAd({div: "sponsorBannerContent", position: "7012", size: "600x450"});
                } else {
                    launchCCTempAd("sponsorBannerContent","7012","600","450",tile300x250,counter300x250,"iframe","");   
                }
				sponsorShowed = 1;
			} 
		}
	};

