$(document).ready(function(){

	$('.captcha_reload').click(function(){
      var $c = $(this).parents('table').eq(0).find('img').eq(0);
      $c.attr( 'src', $c.attr('src') + '&' + Math.random() )
      return false;
   });
	
	$('.popup-close').click(function(){
      $('#new-form').hide();
   });
	$('#nfshow').click(function(){
      $('#new-form').css("top", $(window).scrollTop() + ( $(window).height() - $('#new-form').height() ) / 2  ).css("right", ( $(window).width() - $('#new-form').width() ) / 2 );
      $('#new-form').show();
   });
   
});
