// Top Nav hover
$(document).ready(function() {
    $("#TopNav li").mouseover(function () {
        $(this).addClass("hover");
      }).mouseout(function() {
        $(this).removeClass("hover");
      });
  });

function openProfile(url)
{
	var w = window.open( url, "profile", "status = 0, height = 625, width = 805, resizable = 1, scrollbars = 1" );
	w.focus();
}
