$(document).ready (
	function ()
	{				
		$(".menu li").hover(
			function() {
				$(this).addClass("sfhover");
			},
			function() {
				$(this).removeClass("sfhover");
			}
		);
		$("#path li.article").remove();
		$("#path li:last").addClass("last");
		
		$('.menu a[href*=http]').each(function(){
			value = $(this).attr('href');
			re = new RegExp (/y\-?soft/);
			if (!value.match(re)) {
				$(this).attr('target','_blank');
			}
		});
	}
);