// JavaScript Document

/* don't forget to ESCAPE "\" any special characters! */



/* put titles for the photogallerys here */

var photogallery1title = "Honolulu Star-Advertiser";
var photogallery2title = "Make a Donation Today!";
var photogallery3title = "Add An Event";
var photogallery4title = "HNLnow Twitter Feed";



/* put copy for the photogallerys here */


var photogallery2copy = "You can help the victims of countless crises, like the recent earthquake in Haiti, by making a financial gift to the American Red Cross.";
var photogallery3copy = "HNLnow will promote your event for free. Add your event to the calendar with our self-service form. It only takes 5 minutes, so what are you waiting for?";


/* inserts your text above into the approriate elements in the page */

document.getElementById("photogallerytitle1").innerHTML = photogallery1title;

document.getElementById("photogallerytitle2").innerHTML = photogallery2title;
document.getElementById("photogallerytitle3").innerHTML = photogallery3title;
document.getElementById("photogallerytitle4").innerHTML = photogallery4title;


document.getElementById("photogallerycopy2").innerHTML = photogallery2copy;
document.getElementById("photogallerycopy3").innerHTML = photogallery3copy;

