
	// ------------------------------------------------------------ //
	
		// NOVOFLOW MODULES
	
	// ------------------------------------------------------------ //
	
	
	// BACKGROUND ANIMATION -------------------------------------------------- //
	var speed = 60; // speed of the bokeh animation
	var move = 1; // how many steps should the bokeh move
	var current = 0; // current postion of bokeh
	var image = 20000; // bokeh size

	var startPoint = image;

	function animation(){
		current -= move;
		if (current == startPoint){
			current = 0;
		}
		
		// down to top animation
		$('#lowerBokeh').css("background-position",  "0 "+current+"px");
		
		//right to left animation
		$('#upperBokeh').css("background-position", current+"px 0");
	}

	var init = setInterval("animation()", speed);
	// BACKGROUND ANIMATION -------------------------------------------------- //
	
	
	
	
	
	
	
