
<!--
var icon, num;


advertising = new Image()
advertising.src = "images/advertisingLgSel.jpg"
internet = new Image()
internet.src = "images/internetLgSel.jpg"
relations = new Image()
relations.src = "images/relationsLgSel.jpg"
market = new Image()
market.src = "images/marketLgSel.jpg"
newsletter = new Image()
newsletter.src = "images/newsletterLgSel.jpg"
testimonial = new Image()
testimonial.src = "images/testimonialLgSel.jpg"
questions = new Image()
questions.src = "images/questionsLgSel.jpg"
contact = new Image()
contact.src = "images/contactLgSel.jpg"

function advertisingSel(){
	document.advertising.src = advertising.src; return true;
}

function internetSel(){
	document.internet.src = internet.src; return true;
}

function relationsSel(){
	document.relations.src = relations.src; return true;
}

function marketSel(){
	document.market.src = market.src; return true;
}

function newsletterSel(){
	document.newsletter.src = newsletter.src; return true;
}

function testimonialSel(){
	document.testimonial.src = testimonial.src; return true;
}

function questionsSel(){
	document.questions.src = questions.src; return true;
}

function contactSel(){
	document.contact.src = contact.src; return true;
}




function restore(num) {
document.images[num].src = "images/" + num + "Lg.jpg";
}
//-->
