$(document).ready(function()
{
		
	$("#menu ul li a").hover(
	function()
	{	
		if(!$(this).hasClass('activ'))
		{
			$(this).children('.label').stop().animate({marginRight: "10px", color:'hex("#E07B00")'});
			$(this).children('.num').stop().animate({marginRight: "10px", color:'hex("#D0B79D")'});
		}
	},
	function()
	{
		if(!$(this).hasClass('activ'))
		{
			$(this).children('.label').stop().animate({marginRight: "0px", color:'hex("#D0B79D")'});
			$(this).children('.num').stop().animate({marginRight: "0px", color:'hex("#5A4F44")'});
		}
	});
	var i=0;
	$('#refresh_captcha').click(function()
	{
		$.ajax({
			url: "refresh_captcha.php",
			cache: false,
			success: function(html){
				$("#img_captcha").attr('src','captcha.php?i='+i);
			}
		});
		i++;
		return false;
	});

});

