$(function(){

	$('#menu img').each(function(){
		if(this.src.indexOf('/menu/')>-1 && this.src.indexOf('/over/')==-1){
			var img=new Image();
			img.src=this.src.replace('/menu/','/menu/over/');

			$(this).hover(function(){
				this.src=this.src.replace('/menu/','/menu/over/');
			},function(){
				this.src=this.src.replace('/over/','/');
			});
		}
	});

	$('.translucent').css('opacity','0.4');

});

function scriptname(){
	var l=document.location.href;
	return l.substring(l.lastIndexOf("/")+1);
}
