$(document).ready(function(){
	// =========================================
	// Make external links open in a new window 
	// =========================================
	
	// If links are outside the current domain open in a new window
	$('a[href^="http://"]').not('[href*="http://10.10.0.221:16080"]').not('[href*="http://www.mypersonalvault.com"]')
			.attr({target: "_blank", title: "Opens in a new window"}); 


	// If link has a rel=newwindow open in a new window
	$('a[@rel=newwindow]')
		.attr({target: "_blank", title: "Opens in a new window"}) 
		
	// =========================================
	// Accordion
	// =========================================
	
	$('ul.drawers').accordion({
			header: 'h2',
			selectedClass: 'selected',
			event: 'click',
			autoHeight: false,
			active: false
	});	
});
