(function($) {
	$(document).ready(function() {
		if($.browser.msie){		    if(jQuery.browser.version>=8){
				$('div.creditsTable').corner('10px keep cc:#dcae2e');
				$('td.tdActive').corner('top 10px keep cc:#dcae2e');
				$('div.Containers').corner('15px keep cc:#dcae2e');
			}
		}else{
			$('div.creditsTable').corner('10px');
			$('td.tdActive').corner('top 10px');
			$('.itext').corner('2px keep');
			$('div.Containers').corner('15px');
		}
		$('div.creditsTable').hide();
		$('div.creditsTable').first().show();
		$('.tabstd').click(function(){
			$('td.tdActive').uncorner().removeClass('tdActive');
			$(this).addClass('tdActive');
			if($.browser.msie){
				$(this).corner('top 10px keep cc:#dcae2e');
			}else{
				$(this).corner('top 10px');
			}
			$('div.creditsTable').hide();
			var index = $('.tabstd').index(this);
			$('div.creditsTable').eq(index).show();
		});
		$('.refreshCaptcha').click(function(){			$('.captchaImg').attr('src','/captcha/get?'+rand());		});
	});
})(jQuery);

