function contentGoToPage(url,width,height){

	if($("#div_content").width != width)
	{
		$("#div_content").animate({"width": width,"height": height}, "slow", function(){
																						contentUpdate(url);
																						$("#div_contentInner").css("width", (width-10) +"px");
																						$("#div_contentInner").css("height", (height-10) +"px");
																						  });	
	}
	else
	{
		contentUpdate(url);
	}
}

function contentUpdate(url){
	$("#div_content").append('<div id="contentLoading"></div>');
	$("#contentLoading").css('position','absolute');
	$("#contentLoading").css('top','50%');
	$("#contentLoading").css('left','50%');
	$("#contentLoading").append('<img src="http://www.ledlamp.nl/css/img/loading.gif">');
	$("#contentLoading").css('margin-top','-'+($("#LB_loading").outerHeight()/2)+'px');
	$("#contentLoading").css('margin-left','-'+($("#LB_loading").outerWidth()/2)+'px');	

	$.ajax({
		url: url,
		async: true,
		cache: false,
		dataType: "html",
		success: function(fetchedData){
				$("#div_contentInner").html(fetchedData);
				$("#contentLoading").remove();
			},
		error: function(){
				$("#contentLoading").remove();
			}
	});			
}