$(document).ready(function() {
	// Galerie foto
		var default_width = '';
		var image_position = 1;
		var image_all = parseInt($('#image_all').html());

		if ($('#martorocularFoto').attr('id')) {
			var default_width = '&width=460';
		}

		if ($('#play').attr('id')) {
			var slideshow = true;
		} else {
			var slideshow = false;
		}
		$('.photoExtras .next').click(
				function() {
					slideshow = false;
					if (image_position == image_all - 1) {
						$('.photoExtras .next').css( {
							visibility : "hidden"
						});
					}
					$('.photoExtras .prev').css( {
						visibility : "visible"
					});
					++image_position;
					$('#image_position').html(image_position);
					div = $('#gallery');
					loadBox(div, URL
							+ '/boxes/ajax_article_gallery.php?article_id='
							+ article_id + '&position=' + image_position
							+ default_width, '', function() {
						var description = $('#gallery img').attr('alt');
						$('.photoExtras .description').html(description);
					});

				});
		$('.photoExtras .prev').click(
				function() {
					slideshow = false;
					if (image_position == 2) {
						$('.photoExtras .prev').css( {
							visibility : "hidden"
						});
					}
					$('.photoExtras .next').css( {
						visibility : "visible"
					});
					--image_position;
					$('#image_position').html(image_position);
					div = $('#gallery');
					loadBox(div, URL
							+ '/boxes/ajax_article_gallery.php?article_id='
							+ article_id + '&position=' + image_position
							+ default_width, '', function() {
						var description = $('#gallery img').attr('alt');
						$('.photoExtras .description').html(description);
					});
				});
		/*
		// Slideshow
		$(document).everyTime(
				5000,
				function() {
					if (slideshow == true && image_all > 1) {
						if (image_position == image_all) {
							image_position = 0;
						}
						if (image_position == image_all - 1) {
							$('.photoExtras .next').css( {
								visibility : "hidden"
							});
						}
						if (image_position < image_all - 1) {
							$('.photoExtras .next').css( {
								visibility : "visible"
							});
						}
						if (image_position < 1) {
							$('.photoExtras .prev').css( {
								visibility : "hidden"
							});
						}
						if (image_position >= 1) {
							$('.photoExtras .prev').css( {
								visibility : "visible"
							});
						}
						++image_position;
						$('#image_position').html(image_position);
						div = $('#gallery');

						loadBox(div, URL
								+ '/boxes/ajax_article_gallery.php?article_id='
								+ article_id + '&position=' + image_position
								+ default_width, '', function() {
							var description = $('#gallery img').attr('alt');
							$('.photoExtras .description').html(description);
						});

					} else {
						if (slideshow == false) {
							$('#play').fadeIn(400);
						} else {
							$(document).stopTime();
						}
					}
				});
		*/
		$('#play').click(function() {
			if (image_position == image_all) {
				image_position = 0;
			}
			$('.photoExtras .next').click();
			slideshow = true;
			$('#play').fadeOut(400);
		});
	});
