function addBookmark(title,url) {
    if (document.all ) {
        window.external.AddFavorite( url, title);
    } else if((window.opera && window.print) || window.sidebar ) {
        alert("Your browser does not support this functionality!");
        return true;
    }
    
    pageTracker._trackPageview('/bookmark');
    
    return true;
}

$(document).ready(function() {
	if ($('#content').height() < $('#navigation').height()) {
		$('#content').height($('#navigation').height() + 10);
	}
});