 /*

setInterval('Test()', 500);

$(document).ready(function(){

	

	function Contact(){

	$('#loader').html('<img src="loaders/loader.gif" width="16" height="16" />');

	$.getJSON('controlers/captcha-gen.php?hashcap=true', function(data){

	   $('#loader').html('');

	   var dataCaptcha = data.captcha,

	   	   dataHashcap = data.hashcap;

    	 $('#capstring').html(dataCaptcha);

		 $('#captcha-hash').val(dataHashcap);

   },"json");



}

	//Toggle Button

	$('li.contact').click(function(){Contact();$('#contact-container').toggle(200);});

	//Refresh Button

	$('#capt-refresh').click(function(){Contact();});

	//Send Button & fnc

	$('#send').click(function(){Contact();});



});

*/
