/* Goes in Header.php */

jQuery(function(){
jQuery('ul.superfish').superfish();
});



/* Goes in comments-popup.php */

document.onkeypress = function esc(e) {
	if(typeof(e) == "undefined") { e=event; }
	if (e.keyCode == 27) { self.close(); }
}

