// ====================================================================================================================================

/*$(document).ready(
	function()
	{
		var link = $(".block-menu ul li a").attr();
		
		$(".block-menu ul li a").each(function() {
		
			if(link == "/pl") {
				$(this).attr("href", "#");
			}
			
		});
		
});*/
/*
$(document).ready(function() { $("#block-menu-menu-oferta-en h2.block-title").text("Offer"); });
$(document).ready(function() { $("#block-menu-menu-oferta-uk h2.block-title").text("???????????"); });
*/



$(document).ready(
function()
{

	$(".block-menu ul li a").each(function() {
		var link = $(this).attr("href");
			if(link == '/pl') {
				$(this).attr("href", "#");
			}
	});

	
	/*
	$("#nice-menu-1 li a").hover(
	function () {
    $(this).animate({color: "#000"},500,"linear");
	},
	function () {
	$(this).animate({color: "#fff"},500,"linear");  
	}
	);
	*/

});



/*
	$("#nice-menu-1 li a").hover(
	function () {
    $(this).animate({"background" "blue"}, 500 );
    $(this).text("red");
	},
	function () {
	$(this).animate({"background" "red"}, 500 );
	$(this).text("blue");
	}
	);
*/




