$(document).ready(function(){
	
	$(".money").numeric();
	
	$(".hint").hover(
		function () {  
			var $className = $(this).attr("class");			
			var $temp = new Array();
			temp = $className.split(' ');			
			var $text = $("#" + temp[0]).text();			
			$("#hint").text($text)						
			  	      					
		}, 
		function () {
			$("#hint").fadeIn(300).text("Я — «Мыслитель» французского скульптора Августа Родена")	
		}
    ); 
});

/* обновляем капчу */
function reloadCaptcha(){
	
	$("#captchaImg").attr("src","/captcha/"+Math.round(Math.random()*1000));
	$(".captchaText").attr("value","");
	
	return true;
}

