
function reload_captcha() {
	var captcha_id = $('#captcha_id').get(0);
	captcha_id.value = Math.ceil( 100000*Math.random() );
	var captcha_img = $('#captcha_img').get(0);
	captcha_img.src = captcha_img.src.replace( /(\?.*)?$/, '?captcha_id='+captcha_id.value );
	return false;
}

function copy_code() {
	$.clipboard( $('#code').val() );return false;
}

$(function() {

	$('#captcha_img').after('<a href="#" onclick="return reload_captcha()">Сменить картинку</a>');

	$.clipboardReady(function(){
		$('#code').after('<input class="button" type="button" value="Скопировать в буфер обмена" onclick="return copy_code()" />');
	}, { swfpath: "/fl/jquery.clipboard.swf" } );
});
