var baseurl = 'http://recruiter.campaihosting.nl/';

/*********************************************************************/
/*
/*	These functions make sure the tab- and buttonhandling goes well.
/*
/*********************************************************************/

	$(document).ready(function(){
		
		// Houston, we have tabs on our page!
		if ( $("#tabContainer > ul").length > 0 )
		{
			var $tabs = $("#tabContainer > ul").tabs();
		}
		
		scroll(0,0); // Only works in IE6, IE7, FF2, FF3.
	
	});

/*********************************************************************/
/*
/*	End
/*
/*********************************************************************/



function emptyInputText(elementID,inputText)
{
	if(document.getElementById(elementID).value == inputText)
	{
		document.getElementById(elementID).value = '';
	}
}