$(function () {
	var tabContainers = $('tbody > tr',$('#searchform'));
	/*alert(tabContainers.html());*/
	$('thead a',$('#searchform')).click(function () {
		tabContainers.hide().filter(this.hash).show();
		$('thead a', $('#searchform')).removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
});
function redirect(url) {
	window.location.replace(url);
}
function updatecaptcha(url) {
	$('#captcha').html('<img onclick="updatecaptcha(\''+url+'\');" src="' + url + Math.random() + '/"  style="cursor:pointer;" alt="" />');
}