// JavaScript Document
$(document).ready(function(){
	$("#tabs").tabs();

	// Replace Tab Content
	var randomnumber = Math.floor(Math.random()*1000);
	
	//Speeches
	//$.get("/includes/hp_latest.php",{rnd: randomnumber},function(data){
	//	$("#speeches_content").replaceWith(data);
	//});
	
	// Video
	/*$.get("/includes/get_multimedia.php",{rnd: randomnumber},function(data){
		$("#video_content").replaceWith(data);
	});*/
	
	// end ready
});