$(document).ready(function(){
	$('#topmenu ul img.idle').hover(function(){
		$(this).attr("src", $(this).attr("src").split(".").join("En."));
	},function(){
		$(this).attr("src", $(this).attr("src").split("En.").join("."));
	});
	
	if ($('#topmenu ul img.active').length>0){
		$('#topmenu ul img.active').attr("src", $('#topmenu ul img.active').attr("src").split(".").join("En."));
	}
}
)		
