/*--------------------------------------------------------------
	javascript: 	user control panel interface inits:
					
	version: 		0.2.0.0
	cmf version: 	0.4.3.0
	date: 			02.03.2008
	author:			maxus <maxus_w@i.ua>
	idea:			own
--------------------------------------------------------------*/
(function($){
	$(document).ready(function() {
		$("#captcha-update").click(function(){
			$('#captcha-image').attr('src', 'bknds/captcha_image.php?captcha=' + Math.random());
		});
		$('#change_period').change(function(){
			$('#biggraph').attr('src', 'interface/basic/i/fond_'+ $('#biggraph').attr('alt') +'_'+ $('#change_period').val() +'_'+ $('#biggraph').attr('title') +'.png');
		});
		$('.blank').click(function(){
			this.target = '_blank';
		});
	});
})(jQuery);



