<!--
// jQuery functions
jQuery(function($){ 
$(document).ready(function() {

// external links (w3c valid workaround)
$("a.xhref").attr("target","_blank");

// re-route remote feed links to new windows
$(".xhref a").attr("target","_blank");

// display javascript-only content
$(".js").css("display","block");
$(".jx").css("display","none");

// no title
$("a.null").attr("title",""); //hide tooltips


// testing
var guides=false;
$(".j_guides").click(function(){
if(!guides){
	$('body').addClass('guides');
	guides=true;
}else{
	$('body').removeClass('guides');
	guides=false;
}
return false;//null-click
});


});
});
-->
