Cufon.replace('#topnav, #phone, h1, h2, .cufon');
Cufon('#footer', {
	hover: {
		color: 'rgb(0,171,189)'
	}
});
Cufon('#uslugi', {
	hover: {
		color: '#272727'
	} 
});
jQuery(document).ready(function() {
    jQuery("#slider").easySlider({
		auto: true,
        speed: 500,
        pause: 3500,
        controlsShow: false,
		continuous: true
	});
	jQuery("#topnav li").prepend("<span></span>"); 
	jQuery("#topnav li").each(function() { 
		var linkText = jQuery(this).find("a").html(); 
		jQuery(this).find("span").show().html(linkText); 
	}); 
	jQuery("#topnav li").hover(function() {	
		jQuery(this).find("span").stop().animate({ 
			marginTop: "-48" 
		}, 250);
	} , function() { 
		jQuery(this).find("span").stop().animate({
			marginTop: "0" 
		}, 250);
	});
});
