$(function() {
	
	// TARGET BLANK XHTML STRICT
	$('a[@rel$="external"]').bind("click", function(){
		this.target = "_blank";
	});
	
	// Display or not the submenu
	$('#right4 a').click(
		function () {
			$('.anchorList').css({"display":"none"});
		}
	);
	
	$('#closeBt').click(
		function () {
			$('.anchorList').css({"display":"block"});
		}
	);
	
	

});