// JavaScript Document
//RANDOM PP SIDEBAR
$(document).ready(function (){
	getRecords();
	function getRecords () {
		$.get("parentRecords.php", 
			function(returned_data){
				$('#parentDisplay').html(returned_data);
			});
		}
		setInterval(function() {
		getRecords();
	}, 10000);
});
//END RANDOM PP SIDEBAR
//HOMEPAGE VIDEOS 
function switchVid(id){
	if(id == 0){	
		$.get("vid1.php", 
			function(returned_data){
			  $('#box1').html(returned_data);
		});
	}
	if(id == 1){	
		$.get("vid2.php", 
			function(returned_data){
			  $('#box1').html(returned_data);
		});
	}
	if(id == 2){	
		$.get("vid3.php", 
			function(returned_data){
			  $('#box1').html(returned_data);
		});
	}
	if(id == 3){	
		$.get("vid4.php", 
			function(returned_data){
			  $('#box1').html(returned_data);
		});
	}
	if(id == 4){	
		$.get("vid5.php", 
			function(returned_data){
			  $('#box1').html(returned_data);
		});
	}
}
//END HOMEPAGE VIDEOS
