function setText(){

//This is where you set the Headline, subheadline and href links

var h1 = "Paradise Island Carnival"
var s1 = "Enjoy carnival food, Bible-based Carnival games and loads of fun at Paradise Island Carnival on Saturday, Mar. 13."
var a1 = "http://www.lordoflife.org/familyfellowship"

var h2 = "Looking for a summer adventure?"
var s2 = "Then register now for summer CYF events like Summer Stretch, VBS, camp and more!"
var a2 = "http://www.lordoflife.org/summer"

var h3 = "Membership101"
var s3 = "Lord of Life's new online membership class, featuring videos from each of the pastors, is now available."
var a3 = "http://www.lordoflife.org/newmembers"

var h4 = "Mission Jamaica In-a-Suitcase"
var s4 = "Donations are needed for Mission Jamaica In-a-Suitcase. Bring supplies to Fellowship Hall by Mar. 14."
var a4 = "http://www.lordoflife.org/missionjamaica"

var h5 = "Mission Uganda"
var s5 = "Soccer jerseys and shirts plus school supplies are needed by Mar. 28 for this year's Mission Uganda trip."
var a5 = "http://www.lordoflife.org/missionuganda"

var h6 = "Mission2DR"
var s6 =  "View the new video about Dave and Lisa McCarty's Mission Dominican Republic experience."
var a6 = "http://www.lordoflife.org/missiondr"

var h7 = "Holy Week"
var s7 = "View the schedule for Lent, Holy Week and Easter worship services."
var a7 = "http://www.lordoflife.org/lent"
//----------------------------------------------------------------
// ---------------Dont edit anything below here----------------

var a = $('pic').get('src');

switch(a){
case 'html/pic1.jpg':

$('headline').set('text' , h1);
$('subheadline').set('text', s1);
$('mylink').set('href' , a1 );
break;
case 'html/pic2.jpg':

$('headline').set('text' , h2);
$('subheadline').set('text' , s2);
$('mylink').set('href' , a2 );
break;
case 'html/pic3.jpg':

$('headline').set('text' , h3);
$('subheadline').set('text' , s3);
$('mylink').set('href' , a3 );
break;
case 'html/pic4.jpg':

$('headline').set('text' , h4);
$('subheadline').set('text' , s4);
$('mylink').set('href' , a4 );
break;
case 'html/pic5.jpg':

$('headline').set('text' , h5);
$('subheadline').set('text', s5);
$('mylink').set('href' , a5 );
break;
case 'html/pic6.jpg':

$('headline').set('text' , h6);
$('subheadline').set('text' , s6);
$('mylink').set('href' , a6 );
break;
case 'html/pic7.jpg':

$('headline').set('text' , h7);
$('subheadline').set('text' , s7);
$('mylink').set('href' , a7 );
break;

}
}

window.addEvent('domready', function() {
    setText();
})



