$(document).ready(function(){

	/* EXTERNAL LINKS start ***********************************************************/
	$('a[@rel$="external"]').click(function(){
		this.target = "_blank";
	});	
	/* EXTERNAL LINKS end *************************************************************/

	/* NAVIGATION start ***************************************************************/
	$('#nav ul ul').hide();
	//hover show 2nd level
	$('#nav ul > li').hover(function() {
		$('ul:first', this).show();
	},
	function() {$('ul:first', this).hide();});
	//hover 3rd level
	$('#nav ul li li').hover(function() {
		$('ul:first', this).each(function() {
			$(this).show();
		});
	},
	function() {$('ul:first', this).hide();});
	//hover 4th level
	$('#nav ul li li li').hover(function() {
		$('ul:first', this).each(function() {
			$(this).show();
		});
	},
	function() {$('ul:first', this).hide();});
	/* NAVIGATION end ****************************************************************/
	
		
}); //close document.ready
