/*===========================================================================
	Behavior (Global)
	
	This JavaScript executes dynamic behaviors such as:
	* Preloading images
	* Flash Replacements (i.e. sIFR, UFO, SWFObject, etc.)
	* Decorate the DOM with presentational elements
	* Collapsing/expanding sections
	* Form validation
	* Popup windows
===========================================================================*/

/* Enable FireBug/etc. logging if logging widget is loaded
===========================================================================*/

if (window.YAHOO && YAHOO.widget.Logger) {
	YAHOO.widget.Logger.enableBrowserConsole();
}

$(document).ready(function() {
	$("a[rel='external']").click(function(e) {
		// Adapted from: http://www.456bereastreet.com/archive/200610/opening_new_windows_with_javascript_version_12/
		var oWin = window.open(this.getAttribute("href"), "_blank");
		if (oWin) {
			if (oWin.focus) oWin.focus();
			return false;
		}
		
		oWin = null;
		return true;
	})
});