// Banner Rotation
// Created by Nathan Chappell

function change(a)
{
if ( a == "1")
{
document.getElementById('portfolio-img').innerHTML = "<a href=\"http://www.rozellestone.com\" target=\"blank\"><img src=\"img/sites/rozellestone.jpg\" /></a>";
document.getElementById('company').innerHTML = "Rozelle Stone Company";
document.getElementById('description').innerHTML = "Rozelle Stone Company has demonstrated expertise in stone craftsmanship, a true concern for worker and customer safety, and a dedication to business ethics and sound business practices, which places them among the upper echelon in the stone industry.";
document.getElementById('tasks').innerHTML = "TASKS: XHTML, CSS, PHP, &amp; Wordpress";
document.getElementById('movement').innerHTML = "<a href=\"javascript:change('7')\">PREVIOUS</a> | <a href=\"javascript:change('2')\">NEXT</a>";
}
if (a == "2")
{
document.getElementById('portfolio-img').innerHTML = "<a href=\"http://www.solutiondispersions.com\" target=\"blank\"><img src=\"img/sites/sdi.jpg\" /></a>";
document.getElementById('company').innerHTML = "Solution Dispersions";
document.getElementById('description').innerHTML = "The world's leading supplier of aqueous carbon black dispersions, Solution Dispersions provides a remarkable product at the most-competitive price, custom solutions for every industry and unmatched customer support.";
document.getElementById('tasks').innerHTML = "TASKS: XHTML, CSS, &amp; PHP";
document.getElementById('movement').innerHTML = "<a href=\"javascript:change('1')\">PREVIOUS</a> | <a href=\"javascript:change('3')\">NEXT</a>";
}
if (a == "3")
{
document.getElementById('portfolio-img').innerHTML = "<a href=\"http://www.ohsnapphotobooth.com\" target=\"blank\"><img src=\"img/sites/ospb.jpg\" /></a>";
document.getElementById('company').innerHTML = "Oh Snap! Photobooth";
document.getElementById('description').innerHTML = "Oh Snap! Photobooth provides interactive and creative fun no matter what the event – wedding receptions, bar mitzvahs, bat mitzvahs, corporate parties, greek life, school functions, and more.";
document.getElementById('tasks').innerHTML = "TASKS: XHTML, CSS, &amp; PHP";
document.getElementById('movement').innerHTML = "<a href=\"javascript:change('2')\">PREVIOUS</a> | <a href=\"javascript:change('4')\">NEXT</a>";
}

if (a == "4")
{
document.getElementById('portfolio-img').innerHTML = "<a href=\"http://www.nnpwealth.com\" target=\"blank\"><img src=\"img/sites/nnp.jpg\" /></a>";
document.getElementById('company').innerHTML = "Nachman Norwood & Parrott";
document.getElementById('description').innerHTML = "Nachman Norwood & Parrott is a Greenville, SC-area wealth management consultancy for top-tier individuals and qualified retirement plan sponsors.";
document.getElementById('tasks').innerHTML = "TASKS: XHTML, CSS, &amp; PHP";
document.getElementById('movement').innerHTML = "<a href=\"javascript:change('3')\">PREVIOUS</a> | <a href=\"javascript:change('5')\">NEXT</a>";
}

if (a == "5")
{
document.getElementById('portfolio-img').innerHTML = "<a href=\"http://cabinetscarolinas.com\" target=\"blank\"><img src=\"img/sites/cotc.jpg\" /></a>";
document.getElementById('company').innerHTML = "Cabinets of the Carolinas";
document.getElementById('description').innerHTML = "Cabinets of the Carolinas' heritage stretches back to the 1700s, when its founder's ancestors moved from Europe to the Appalachian region of America with two things: the hope of a better life and a long lineage of woodworking skills.";
document.getElementById('tasks').innerHTML = "TASKS: XHTML, CSS, &amp; PHP";
document.getElementById('movement').innerHTML = "<a href=\"javascript:change('4')\">PREVIOUS</a> | <a href=\"javascript:change('6')\">NEXT</a>";
}

if (a == "6")
{
document.getElementById('portfolio-img').innerHTML = "<a href=\"http://sparksperry.com\" target=\"blank\"><img src=\"img/sites/spr.jpg\" /></a>";
document.getElementById('company').innerHTML = "Sparks Perry Research";
document.getElementById('description').innerHTML = "As a full-service marketing research firm, understanding your business is our top priority. Thinking beyond the data, finding the underlying and fundamental truths that profoundly impact your success – that is our purpose.";
document.getElementById('tasks').innerHTML = "TASKS: XHTML, CSS, &amp; PHP";
document.getElementById('movement').innerHTML = "<a href=\"javascript:change('5')\">PREVIOUS</a> | <a href=\"javascript:change('7')\">NEXT</a>";
}

if (a == "7")
{
document.getElementById('portfolio-img').innerHTML = "<a href=\"http://www.kathryndalebarton.com\" target=\"blank\"><img src=\"img/sites/kdb.jpg\" /></a>";
document.getElementById('company').innerHTML = "Kathryn Dale Barton";
document.getElementById('description').innerHTML = "A customized website to show the skill and portfolio of an artist.";
document.getElementById('tasks').innerHTML = "TASKS: XHTML, CSS, PHP, &amp; Wordpress";
document.getElementById('movement').innerHTML = "<a href=\"javascript:change('6')\">PREVIOUS</a> | <a href=\"javascript:change('1')\">NEXT</a>";
}

} // end function
