$(document).ready(function() {
	$("#rightBar").height($("#contentArea").height());

	$("#navigation .link:not(.current)").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});

	$("input.txtSearch").focus(function() {
		if ($(this).val().trim() == "Search...") {
			$(this).val('');
		}
	});
	$("input.txtSearch").blur(function() {
		if ($(this).val() == '') {
			$(this).val("Search...");
		}
	});
    // Opens up blank links in new window.
    $('.lnkBlank').click(function() {
        window.open($(this).attr('href'), 'newWindow', '');
        return false;
    });
});
