var titleArray = new Array();
var descriptionArray = new Array();
var linkArray = new Array();
titleArray["edi"] = "Ellis Diversified Inc.";descriptionArray["edi"] = "This is a real estate development and investment firm that deals with luxury estates and multi-family developments.
- Content Management System
- Image gallery for properties
- News article listing
";linkArray["edi"] = "http://ellisdiversified.com";titleArray["kensizemore"] = "Ken Sizemore";descriptionArray["kensizemore"] = "A.K.A Old Folkie is a Folk Singer and Guitarist with mulitple albums available.- Content pulls from established social networking site
- Flash audio player
- Simple usable and navigatable design
";linkArray["kensizemore"] = "http://kensizemore.com";titleArray["julianacole"] = "Juliana Cole";descriptionArray["julianacole"] = "Juliana is a Singer Songwriter working out of Los Angeles and Nashville. - Fully Flash
- Dynamic content (XML driven)
- Audio player
- Video player
- Contact form
- Multiple page layouts available
";linkArray["julianacole"] = "http://julianacole.com";titleArray["julianacole_ms"] = "Juliana Cole MySpace";descriptionArray["julianacole_ms"] = "This profile has been personalized to match the website design.
";linkArray["julianacole_ms"] = "http://myspace.com/julianacole";titleArray["julianacole_em"] = "Juliana Cole Mailer Series";descriptionArray["julianacole_em"] = "Image rich emails designed for Juliana Cole's This Ain't No Twang Thing series, performed at the Blue Bar in Nashville.
";linkArray["julianacole_em"] = "";titleArray["seanmcconnell"] = "Sean McConnell";descriptionArray["seanmcconnell"] = "Sean is a Nashville based musian, promoting his latest EP.- Content pulls from established social networking site
- Simple usable and navigatable design
- Links to purchasing and networking sites
";linkArray["seanmcconnell"] = "http://seanmcconnell.com";titleArray["seanmcconnell_ms"] = "Sean McConnell MySpace";descriptionArray["seanmcconnell_ms"] = "This profile has been personalized to fit website design.
";linkArray["seanmcconnell_ms"] = "http://myspace.com/seanmcconnell";titleArray["jeaniedavis_ms"] = "Jeanie Davis MySpace";descriptionArray["jeaniedavis_ms"] = "This profile has been personalized to fit EP design.
";linkArray["jeaniedavis_ms"] = "http://myspace.com/jeaniedavis";titleArray["jimihendrix"] = "Jimi Hendrix Fine Art";descriptionArray["jimihendrix"] = "This site was built to facilitate the recently discovered Visual Art of Jimi Hendrix. - Content Management System
- Shopping cart
- Product history documentation and sources
Note: This site is no longer available.
";linkArray["jimihendrix"] = "";titleArray["becknerfeather"] = "Beckner Feather Duster Co.";descriptionArray["becknerfeather"] = "This small business is a family run and operated ostrich feather duster company from 1913. - Simple HTML
- Company information and history
- Online cataloge
- Basic contact form
";linkArray["becknerfeather"] = "http://becknerfeather.com";titleArray["moth"] = "Female Moth";descriptionArray["moth"] = "Watercolor on Paper
To capture the relationship between beauty and illusion as part of the natural order.
";linkArray["moth"] = "";titleArray["chrctr_01"] = "Character Design";descriptionArray["chrctr_01"] = "Adobe Illustrator
Five characters designed for a short story.
";linkArray["chrctr_01"] = "";titleArray["lounge"] = "@ The Lounge";descriptionArray["lounge"] = "Adobe Illustrator
Illustration for a poster.
";linkArray["lounge"] = "";titleArray["leaf"] = "Leaf";descriptionArray["leaf"] = "Watercolor on Paper
Rendering of a found object.
";linkArray["leaf"] = "";titleArray["rembrandt"] = "Rembrandt Harmenszoon van Rijn";descriptionArray["rembrandt"] = "Acrylic on Canvas
Study of a Self Portrait by Rembrandt
";linkArray["rembrandt"] = "";titleArray["chinatown_sf"] = "Chinatown SanFransisco";descriptionArray["chinatown_sf"] = "Acrylic on Canvas
Rendering of view in SanFransisco, CA
";linkArray["chinatown_sf"] = "";titleArray["explosion"] = "Explosion";descriptionArray["explosion"] = "Acrylic on Canvas
An exploration of limited and contrasting human perspective
";linkArray["explosion"] = "";titleArray["alcatraz"] = "Alcatraz";descriptionArray["alcatraz"] = "Watercolor on Paper
Rendering of view at Alcatraz
";linkArray["alcatraz"] = "";titleArray["alone"] = "Alone";descriptionArray["alone"] = "Concept
";linkArray["alone"] = "";titleArray["faerie"] = "Faerie";descriptionArray["faerie"] = "Concept
";linkArray["faerie"] = "";titleArray["dino"] = "Dino";descriptionArray["dino"] = "Portrait
";linkArray["dino"] = "";titleArray["handtree"] = "HandTree";descriptionArray["handtree"] = "Concept
";linkArray["handtree"] = "";titleArray["weepingwillow"] = "Weeping Willow";descriptionArray["weepingwillow"] = "Concept
";linkArray["weepingwillow"] = "";titleArray["akanaten"] = "Akanaten";descriptionArray["akanaten"] = "Study
";linkArray["akanaten"] = "";
var click = "0";
function changeImg(myImage){
document.getElementById("imagedisplay").style.backgroundImage = 'url("gallery/images/'+ myImage +'.jpg")';
var titleData = titleArray[myImage];
var descriptionData = descriptionArray[myImage];
var linkData = linkArray[myImage];
document.getElementById('img_title').innerHTML = ""+ titleData +"
";
if (!linkData){
document.getElementById('img_content').innerHTML = ""+ descriptionData +"
";
} else {
document.getElementById('img_content').innerHTML = "";
}
}
var toggleInfo = 0;
function info(){
if (toggleInfo == 0){
document.getElementById('img_description').style.display = "block";
document.getElementById('img_toggle').innerHTML = "hide info";
toggleInfo = 1
} else {
document.getElementById('img_description').style.display = "none";
document.getElementById('img_toggle').innerHTML = "show info";
toggleInfo = 0
}
}
function load()
{
document.getElementById("imagedisplay").style.display = "block";
document.getElementById("thumbshell").style.display = "block";
document.getElementById("imagedisplay").style.backgroundImage = 'url("gallery/images/edi.jpg")';
var titleData = titleArray["edi"];
var descriptionData = descriptionArray["edi"];
var linkData = linkArray["edi"];
document.getElementById('img_title').innerHTML = ""+ titleData +"
";
if (!linkData){
document.getElementById('img_content').innerHTML = ""+ descriptionData +"
";
} else {
document.getElementById('img_content').innerHTML = "";
}
}