 $(document).ready( function(){  
			
			
		/* =================================================================== */
		// rel= links
		
			$('a[rel="external"]').click(function(){
				window.open(this.href);
				return false;
			});
			
			$('a[rel="clientLogin"]').click(function(){
				window.open(this.href,'clientLogin','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=800');
				return false;
			});
			
		/* =================================================================== */

        
        
		$('ul#navigation li').hover(
		     function () {
		       	$(this).children("ul").show();
		     }, 
		     function () {
		     	$(this).children("ul").hide();
		     }
		);
		
});