$(function(){
	 // Hilite login form
	$('#loginHilite').click(function () {
		$('#username, #password').addClass('hilite');
		$("#login > h3").css({color:'#FFFFFF'});
	});
	
    if($("#rightColumn").height() > $("#leftColumn").height()) {
		if($('#AddComment').length > 0 && $.browser.msie){ //fix for ie content hieght bug
			var tallColumn = $("#content").height();
		}else{
			var tallColumn = $("#rightColumn").height() - 40;
		}
		$("#content").height(tallColumn);
    } else {
	    var tallColumn = $("#leftColumn").height();
        $("#rightColumn").height(tallColumn);
    }
	
	// Your browser is IE6 or less and it sucks alert
	if ($.browser.msie && $.browser.version < 7) {
		$(".copyright").append('<br /><small>Ever think of upgrading your browser to <a href="#" title="Download IE7">Internet Explorer 7</a> or <a href="#" title="Download Firefox">Firefox</a>?</small>');
	}
})

function togglePanic(){
	$('#panicHelp').slideToggle();
}

function panic(url){
	window.location = url;
}