$(document).ready(function(){
	$('input:text').hint();
	$('table.tabular p:last-child').css({ "padding-bottom": "0px" });
	$('a[@href^="http://"]').addClass('external').attr('target', '_blank');
	$('span.ipno').hover(
      function () {
        $(this).css({ "cursor": "pointer" });
      }, 
      function () {
        return false;
      }
    );
	$('span.ipno').click(
		function(){
			$("ul.ipContext").css({ "display": "block" });
		}
	);
	$('ul.ipContext li a').click(
		function(){
			$('ul.ipContext').removeAttr('style');
			return false;
		}
	);
});
