/**
 * @author Primoz Cigler
 */
$(document).ready(function() {
	$("#slider").smoothDivScroll(
	{
		scrollingSpeed: 12,
		mouseDownSpeedBooster: 2,
		autoScroll: "always",
		autoScrollDirection: "backandforth",
		autoScrollSpeed: 2,
		pauseAutoScroll: "mouseover"
	});
	
	function fadeMeOut () {
		$("#back_button").fadeOut(500, function() {
			fadeMeIn ();
		});
	}
	function fadeMeIn () {
		$("#back_button").fadeIn(1000, function() {
			$(this).delay(500);
			fadeMeOut ();
		});
	}
	fadeMeOut ();
});
