﻿$("#menu a img").hover(
    function() {
	    this.src = this.src.replace(".gif", "_over.gif");
    },
 	function() {
 	    this.src = this.src.replace("_over.gif", ".gif");
    }
);
$("#footer a img").hover(
    function() {
        this.src = this.src.replace(".gif", "_over.gif");
    },
 	function() {
 	    this.src = this.src.replace("_over.gif", ".gif");
 	}
);

function MM_openBrWindow(theURL, winName, features) { //v2.0
    window.open(theURL, winName, features);
}
