window.onload=function(e) {
	$(function(){$('div.footMenu').pngFix();});
}

//------image fade
$(function(){
	$(".fade").hover(
		function overFunc(){
			$(this,".fade").fadeTo(300,0);
		},
		function outFunc(){
			$(this,".fade").fadeTo(100,1);
		}
	);
});


//----- img over on
function menuOn(a){
	document.getElementById(a).setAttribute("src", "/images/spacer.gif");

}

