function showRecordPrice(){
	if( $('#worldrecord').is(':visible')){
		$("#worldrecord").hide();	
	} else {
		$("#worldrecord").show();
	}
}

function asyncLoadFacebookStream(){
	
	$.ajax({
		type: "GET",
		url: "facebook.php",
		success: function(html){
			$("#newsContent").html(html);
		}
	});

}

