// Son of Suckerfish - #navigation
drop = function() {
var sfEls = document.getElementById("navigation").getElementsByTagName("li");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" drop";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" drop\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", drop);
//
//

// Opening links in the new windows - rel="ext"
$(function() {
$('a[rel*=ext]').click( function() {
window.open(this.href);
return false;
});
});