//this function is for the html links, it needs the return false at the end,  
function ajaxpage(url, containerid){
	
	var goAjax = new Ajax(url, {
		method: 'get',
		update: $(containerid),
		onComplete: loadAllLinks
		}).request();

	return false;
}
//this function is for the flash links, it doesnt need the return false at the end,  
function ajaxpageFlash(url, containerid){

		url = '/'+url;
	
	var goAjax = new Ajax(url, {
		method: 'get',
		update: $(containerid),
		onComplete: loadAllLinks
		}).request();
}