$(document).ready(function() {
	$("#menu img:not(.current)").hover(
 	function()
	 {
	  this.src = this.src.replace("_off","_active");
	 },
	 function()
	 {
	  this.src = this.src.replace("_active","_off");
	 }
	);

	var active = $("#menu img.current").attr("src");
	if (active > '') {
		// if active page highlight
		active = active.replace("_off","_active");
		$("#menu img.current").attr("src",active);
	}


	$("#language form select").change(function () {
		window.location = $('#language form select :selected').val();
   	})
});


			
