if (typeof(PSIG) == 'undefined') {
	PSIG	= {};
	PSIG.UI	= {};
}

PSIG.UI.Selectors	= function()
{
	var init	= function() {
		initSelectors();
		initExternalLinks();
		
	};

	var initSelectors = function() {
		
		$("#article .addresses .vcard:nth-child(odd)").css("clear","left");	
		
	};
	
	var initExternalLinks = function() {
		
		$("a[href^='http']").not("[href*='psig.info']").attr('target','_blank').append(" (opens in new window)");	
		
	};
	
	return {
		init: init
	};
	
}();


jQuery(function($) { PSIG.UI.Selectors.init(); });
