// initialise plugins
jQuery(function(){
			jQuery('ul.sf-menu').superfish();
	$('form').submit(function () { // optional: replace "form" with whatever CSS selector you want (ex: ID or class)
	$('input[type="submit"]', this).replaceWith('<p><strong>Sending...</strong></p>'); // optional: change "Sending..." to something else
	});
});
		
$(document).ready(function(){ 
        $("ul.sf-menu").superfish({ 
            delay:     500,               // 1.2 second delay on mouseout
            pathClass: 'current'}) 
});

<!-- Begin
function movepic(img_name,img_src) {
document[img_name].src=img_src;
}
// End -->

function changeDivColor(id,color)
{
    document.getElementById(id).style.background = "#FFF";
} 

function expandSection(id){
                    var mySection = document.getElementById(id);
                    if(mySection.style.display=="none"){
                        mySection.style.display="block";
                    } else { 
                        mySection.style.display="none";
                    }
}
            
function expandSections(id1,id2,id3,id4,id5){
                    var mySection1 = document.getElementById(id1);
                    var mySection2 = document.getElementById(id2);
                    var mySection3 = document.getElementById(id3);
                    var mySection4 = document.getElementById(id4);                   
                    var mySection5 = document.getElementById(id5);                   
                        mySection2.style.display="none";
                        mySection3.style.display="none";
                        mySection4.style.display="none";
                        mySection5.style.display="none";

                    if(mySection1.style.display=="none"){
                        mySection1.style.display="block";
                    } else { 
                        mySection1.style.display="none";
                    }
}

function changecolor (i)
{
if(document.getElementById)
document.getElementById(i).color = "red";
else if(document.all)
document.all[i].color = "red";

// makes it so the page does not go to test.html
// return false;
}



