function animate(){	
	$('.map a:not(.alt)').hover(
function(){		
		$(this).find('img').animate({opacity:"1"},{ duration: 500, queue: false },500);		
	},
function(){
		$(this).find('img').animate({opacity:"0"},{ duration: 500, queue: false },500);
	}
	);	
	var el = window.location;
	var href = el.href.split ( '/' );	
		if (href[4] == 'sengilej') {			
			$('#sengilei').animate({opacity:"1"},{ duration: 500, queue: false },500);
		};		
		if (href[4] == 'ulyanovsk') {			
			$('#ulei').animate({opacity:"1"},{ duration: 500, queue: false },500);
		};
		if (href[4] == 'novoulyanovsk') {			
			$('#novoulei').animate({opacity:"1"},{ duration: 500, queue: false },500);
		};
		if (href[4] == 'dimitrovgrad') {			
			$('#dimitrov').animate({opacity:"1"},{ duration: 500, queue: false },500);
		};
		if (href[4] == 'barish') {			
			$('#barish').animate({opacity:"1"},{ duration: 500, queue: false },500);
		};	
	$(".SerchIn").click(
		function(){
			$(this).attr({value: ""});
		}
	)		
}	
$(document).ready(function(){
	animate();
});
