function SubmitSearch()
{
window.location.href = "search-site.htm?search="+document.getElementById("searchme").value;
}


document.getElementById("WebDesignOption").onmouseover = function() 
{
document.getElementById("WebDesignDrop").style.visibility = "visible";
}
document.getElementById("WebDesignOption").onmouseout = function() 
{
document.getElementById("WebDesignDrop").style.visibility = "hidden";
}


function ExpandModule(linkID, collapseContent)
{
    
    if(document.getElementById(collapseContent).style.display == "inline")
    {
    document.getElementById(collapseContent).style.display = "none";
    document.getElementById(linkID).innerHTML = "More details";
    document.getElementById(linkID).className = "ExpandModule";
    }
    else
    {
    document.getElementById(collapseContent).style.display = "inline";
    document.getElementById(linkID).innerHTML = "Hide details";
    document.getElementById(linkID).className = "CollapseModule";
    }
}

var copyrightDate = new Date();

document.write('<div id="Footer">');
document.write('<p id="Footer_Copyright">Designed by Joe Stickings &#169; Joe Stickings '+copyrightDate.getFullYear()+'</p>');
document.write('<p id="Footer_Nav">');
document.write('<a href="index.htm">Home page</a>&nbsp;&nbsp;&#124;&nbsp;&nbsp;');
document.write('<a href="web-design.htm">Web design</a>&nbsp;&nbsp;&#124;&nbsp;&nbsp;');
document.write('<a href="graphic-design.htm">Graphic design</a>&nbsp;&nbsp;&#124;&nbsp;&nbsp;');
document.write('<a href="photography.htm">Photography</a>&nbsp;&nbsp;&#124;&nbsp;&nbsp;');
document.write('<a href="curriculum-vitae.htm">Curriculum vitae</a>&nbsp;&nbsp;&#124;&nbsp;&nbsp;');
document.write('<a href="contact-details.htm">Contact details</a>');
document.write('</p>');
document.write('</div>');