/**
 * @author The One
 */

$(document).ready(function(){
	$('.thickbox').fancybox({
		'zoomSpeedIn': 200,
		'zoomSpeedOut': 200,
		'frameWidth': 100,
		'frameHeight': 100,
		'overlayShow': true
	});
	
	$('.question-form .update_captcha').click(function(){
		
		$.get($(this).attr('href'), null, function (data, textStatus) 
		{
			$('.question-form .captcha').find('img').replaceWith(data);
		});
		return false;
	})

});
