// JavaScript Document

jQuery(document).ready(function(){
$("#form_activate").hover(function(){							
$("#activate_hover").stop().animate({ backgroundColor : "#DEF"}, 500);
}, function () {
$("#activate_hover").stop().animate({ backgroundColor : "#F5F5F5"}, 500);					   
});
});



setTimeout(function(){ 
	$(".notice").animate({ backgroundColor : "#fafafa" }, 3000)
	$(".notice").hide("slow");
	}, 7000);

function reloadCaptcha () {
    $('#refresh').attr('src', 'antispam.php?random=' + (new Date).getTime());
    //(new Date).getTime()  return timestamp in milliseconds, so we can make sure that image won't be in browsers cache

}