function initAjax(){
		//AJAX CALLS
		$(".load_link").unbind();
		$(".load_link").click(function(){
			var target_page = $(this).attr("rel");
			var target_bg = $(this).attr("rev");
			if(target_page !=''){
				$.ajax({
					type: "GET",
					url: target_page,
					success: function(html){
						$("#right_col").html(html);	
						pageTracker._trackPageview('test');
						// Is this a version of IE?
        				//if($.browser.version.substring(0,1)=='6')
						//	DD_belatedPNG.fix('.png_bg');
					}
				});
				if(target_bg != ''){
					$("#bg_container").append("<div id='sub_image' class='bg_image' ></div>")
					$("#sub_image").hide();
					$("#sub_image").css('background-image','url(../images/backgrounds/'+target_bg+')');	
					$("#sub_image").fadeIn(800);
					
				}
			}
				
			});	
		


}