// JavaScript Document

function hideinitial() {
//document.getElementById("general").style.display = 'block';
}

function changeImage(imagename, title) {
if (imagename!="") {
var newimage = "../images/portfolio/" + imagename
document.getElementById("masterimage").src = newimage;
}
document.getElementById("portfolio-texttitle").innerHTML = title;
}

function alertme() {
alert("hello");	
}

function ImageSwap(newimage) {
	document.getElementById("portfolio-popup-image").src = newimage;	
}


