
$(document).ready(function() {
	
	$.get('/cheapo.html',function(xh,s){
	try{
	$('#cheapo_scroll').prepend(xh);
	scrollGangsta('cheapo_scroll','x');
	scrollGangsta.cheapo_scroll.breakpoint = 3;
	} catch(err) {}
	});
	
	
	try {
	$.get('/getVideo1.php?rand' + Math.random(),function(xh, s) { 
		$('#cheapo_left').html(xh);
	});
	} catch(err) {
	}
});
//Loads up a video
function loadClip(id) {
	$.get('/getVideo1.php',{id:id},function(xh, s) { 
		$('#cheapo_left').html(xh);
	});
}

