$(window).resize(function() {
	try{
		changeLinks2Icon();
	}
	catch(error)
	{
	//	alert(error);
	}
});

$(window).load(function() {
	try{
		changeLinks2Icon();
	}
	catch(error)
	{
	//	alert(error);
	}
});

function changeLinks2Icon(){
		if ($(window).width()<1130){
			$(".header_links").addClass('hidden');
		}
		else{
			$(".header_links").removeClass('hidden')
			
		}
}

$(document).ready( function(){
	$.each($("#linksBar").find("A"),
		function ()
		{
			$(this).wTooltip({
				content: $(this).attr("tooltip"),
				className: "toolTip-main-menu"
			});
		})
})

