$(document).ready(function(){
	$("#clouds_body a").click(function(){
	if ($(this).hasClass("openned")) {
	$("#clouds_body").animate({top: "-240px"},500);
	$(this).removeClass("openned");
	}
	else {
	$("#clouds_body").animate({top: "-190px"},500);
	$(this).addClass("openned");
	}
	});
	
	$("#menu a").mouseover(function(){$(this).addClass("transp90");}).mouseout(function(){$(this).removeClass("transp90");});
	$("#menu").pngFix();
	$("#clouds").pngFix();
	$("#othercities_t").click(function(){
		$('#number').hide();
		$('#othercities').fadeIn('slow');
		$('#yaroslavl').addClass('link_city');
		$('#othercities_t').removeClass('link_city');
		$('#call2').fadeIn('slow');
		$('#call').hide();
	});
	$("#yaroslavl").click(function(){
		$('#othercities').hide();
		$('#number').fadeIn('slow');
		$('#othercities_t').addClass('link_city');
		$('#yaroslavl').removeClass('link_city');
		$('#call2').hide();
		$('#call').fadeIn('slow');
	});
});
