var $j = jQuery.noConflict();

$j(function(){

   // xhtml valid target="_blank"
	$j("a[href*='http://']:not([href*='"+location.hostname+"'])").click( function() {
	window.open(this.href);
	return false;
	});
	
   // load superfish menu
	$j('ul.sf-menu').superfish();
	
$j('.popups').popupWindow({ 
centerBrowser:1 
}); 

});


