function leftArrow(){
	var containerwidth = $('#container').width();

		$('.videos').each(function() {
			if ($(this).offset().left < 0) {
				$(this).css("left", "-640px");	
				$(this).animate({left:'+=660px'}, 500);
			} else if ($(this).offset().left > containerwidth) {
				$(this).css("left", "-640px");	
			} else if ($(this).offset().left < containerwidth) {
				$(this).css("left", "20px");
				$(this).animate({left:'+=660px'}, 500);				
			}
		});

}

function rightArrow(){
	var containerwidth = $('#container').width();
	
	

		$('.videos').each(function() {
			if ($(this).offset().left < 0) {
				$(this).css("left", "700px");
			} else if ($(this).offset().left > containerwidth) {
				$(this).css("left", "700px");	
				$(this).animate({left:'-=680px'}, 500);
			} else {
				$(this).css("left", "20px");	
				$(this).animate({left:'-=720px'}, 500);	
			}
		});
	
}
