$(document).ready(function() {

	$('div.VideoSlider ul').each(function(i, e) {
		$(this).data('items', $(this).find('li').length / 2);
		$(this).data('current', 1);
		$(this).data('index', i);
	});

	$('div.VideoSlider div.Left a').click(function() {
		var cur = $(this).parent().parent().children('div.Viewport').children('ul').first().data('current');
		var total = $(this).parent().parent().children('div.Viewport').children('ul').first().data('items');
		var left = 280;

		if (cur == 1) {
			left = -280 * (total - 1);
			cur = total+1;
		}

		$(this).parent().parent().children('div.Viewport').children('ul').each(function(i, e) {
			$(this).animate({left: '+='+left+''}, 1500, 'easeOutExpo');
		});
		$(this).parent().parent().children('div.Viewport').children('ul').first().data('current', cur-1);
		return false;
	});

	$('div.VideoSlider div.Right a').click(function() {
		var cur = $(this).parent().parent().children('div.Viewport').children('ul').first().data('current');
		var total = $(this).parent().parent().children('div.Viewport').children('ul').first().data('items');
		var left = 280;

		if (cur == total) {
			left = -280 * (total - 1);
			cur = 0;
		}

		$(this).parent().parent().children('div.Viewport').children('ul').each(function(i, e) {
			$(this).animate({left: '-='+left+''}, 1500, 'easeOutExpo');
		});
		$(this).parent().parent().children('div.Viewport').children('ul').first().data('current', cur+1);
		return false;
	});
});

