$(document).ready(function(){
	$('#scrollrightbutton').click(function() {
		$('#srollcontent').animate({'margin-left': '+=154'}, 1000);
	});
	$('#scrollleftbutton').click(function() {
		$('#srollcontent').animate({'margin-left': '-=154'}, 1000);
	});

	$(".colorboximg").colorbox();
	$(".colorboxvideo").colorbox({iframe:true, innerWidth:425, innerHeight:350}); 
});
