function showHideToggle(re,show,liclass,id)
{  
	$("#output2_detail"+id).hide('slow');
	mySplitResult =(liclass.split('_'));
	if(document.getElementById(show).style.display == 'none')
	{ 
		document.getElementById(re).className = 'active';
		document.getElementById(liclass).className = 'current';
	} else {
		document.getElementById(re).className = 'current';
		document.getElementById(liclass).className = mySplitResult[1];
	}
	refName = '';
	refName = '#'+re;
	showName = '#'+show; 
	$(showName).slideToggle("slow"); 
}
function submitForm()
{
	document.LoginForm.submit();
}

// All exernal links go outbound
$(function(){
	$('a:not([href=""])').each(function() {
		if (this.hostname.indexOf('joblab') == -1 ) {
			$(this).addClass('externalLink').attr('target', "_blank");
		}
	});
})

