﻿//set image and text for click thru
function isOn(id) {
    if (id == "btn1") {
        document.getElementById('pic1').src = '../images/gallery/design1.jpg'
        document.getElementById('gallery_text').innerHTML = "Business Cards";
        document.getElementById('gallery_text2').innerHTML = "Your business cards must be both professional and memorable. Our graphic designers make sure that your business cards look good and carry all of the important details.";
    } else if (id == "btn2") {
        document.getElementById('pic1').src = '../images/gallery/design2.jpg'
        document.getElementById('gallery_text').innerHTML = "Logo Designs";
        document.getElementById('gallery_text2').innerHTML = "Your logo goes everywhere! CQ’s graphic designers will make sure it represents you well now and for a long time to come.";
    } else if (id == "btn3") {
        document.getElementById('pic1').src = '../images/gallery/design3.jpg'
        document.getElementById('gallery_text').innerHTML = "Flyers and Brochures";
        document.getElementById('gallery_text2').innerHTML = "CQ provided complete design assistance for these colorful seasonal flyers, from creative concept to stock photo sourcing and page layout.";
    }
}