/**
 * @author FOKA
 */
$(document).ready(function(){
	
	window.onload = function(){
		var client_slider = $('#client_slider').movingbox({});
		
		$('#client_prev').click(function(){
			client_slider.moveLeft($(this));
			return false;
		});
		$('#client_next').click(function(){
			client_slider.moveRight($(this));
			return false;
		});
	}
	
	$('.lbf').lightBox({fixedNavigation:true});
	
});
