// SLIDER
(function($){
	$('.gallery').each(function(){
		var idGallery = $(this).attr('id');
		// Params
		var _ = {
			slider: $('.slider ul',this),
			photos: $('.slider li',this).length,
			wphoto: $('.slider li',this).outerWidth(),
			min: 0,
			speed: 7000
		};
		// Computed settings
		_.slider.width( _.photos * _.wphoto );
		_.max = - _.slider.outerWidth() + $('.slider',this).outerWidth();
		// Move
		$('#'+idGallery+' span').hover(
			function(){
				if( $(this).hasClass('right') )
					_.slider.stop().animate({ marginLeft: _.max },_.speed);
				if( $(this).hasClass('left') )
					_.slider.stop().animate({ marginLeft: _.min },_.speed);
			},
			function(){ _.slider.stop(); }
		);
	});
})(jQuery);
$('.gallery a').lightBox({
	imageLoading: '/includes/cobrand/img/ui/lightbox-ico-loading.gif',
	imageBtnClose:'/includes/cobrand/img/ui/lightbox-btn-close.gif',
	imageBtnPrev: '/includes/cobrand/img/ui/lightbox-btn-prev.gif',
	imageBtnNext: '/includes/cobrand/img/ui/lightbox-btn-next.gif',
	txtImage: '',
	txtOf: '/'
});