$(document).ready(function() {

	$('.arriba').click(function() {
	   /*
	   var elementClicked = $(this).attr("href");
	   var destination = $(elementClicked).offset().top;
	   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
	   */
	   $('html, body').animate({scrollTop:0}, 'slow');
	   return false;
	});
	

    $('#slider').cycle({
		fx: 'scrollLeft', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 1500,
		timeout: 10000
	});
	
	
	SyntaxHighlighter.all();


});
