﻿var HOST = '/pl';
var activeImage = 0;
var sections = {'Katalogi reklamowe': '#BE0027', 'Zdjęcia reklamowe': '#841161', 'Prasa, film, multimedia': '#D48625', 'Identyfikacja wizualna': '#80BB3D', 'Kalendarze': '#E4B720', 'Druk wielkoformatowy': '#929257'};

$(document).ready(function(){
	if ($('#gallery-nav li img[src*="default_image"]').size()) {
		$('#gallery-nav li img').show().siblings().hide();
		$('#description').show();
	}
	else {
		$('#gallery-nav li a')
			.each(function(){
				$(this).html(parseInt($(this).text()) + 1);
				$(this).css('backgroundColor', sections[$('#portfolio-nav .active').text()]);
				$('#gallery-image').append('<a href="' + this.href + '"></a>');
				$(this).prev('img').clone(true).appendTo('#gallery-image a:last')
			})
			.click(function(){
				activeImage = parseInt($(this).text()) - 1;
				$('#gallery-image a').hide().filter(':eq(' + activeImage + ')').show().find('img').css('padding-top', (362 - $('#gallery-image a:eq(' + activeImage + ') img').height()) / 2 + 'px');
				if ((d = $(this).next().text()) != '') {
					if ($('#sysArticle').size())
						$('#description .sOverlibDiv').text(d);
					else
						$('#description').text(d);
				}
				$('#description').show();
				return false;
			});
		$('#gallery-image a').lightBox().filter(':not(":first")').hide();
		$('<a href="'+$('#gallery-image a:eq(' + activeImage + ')').attr('href')+'" id="zoom-in"></a>').insertAfter('#gallery-image').click(function(){
			$('#gallery-image a:eq(' + activeImage + ')').click();
			return false;
		});
		$('#gallery-nav li a:first').click();
	}
	$('#article').css({overflow: 'auto'}).jScrollPane({showArrows:true, scrollbarWidth:10});
	$('#gallery-image a img').load(function(){
		$this = $(this);
		$this.css('padding-top', (362 - $this.height()) / 2 + 'px');
	});
	$('#gallery-references a').lightBox();
	field = $('#mail');
	$('#newsletter-form').submit(function(){
		$(field).val($.trim(field.val()));
		if (!(/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(field.val()))) {
			alert('Podany adres e-mail jest nieprawidłowy.');
			$(field).focus();
			return false;
		}
	});
	$('#kontaktowy').attr('onsubmit', '').unbind().submit(function(){
		if (FORM_validate_kontaktowy()) {
			$this = $(this);
			$this.addClass('processing');
			$.post(HOST + '/admin/forms/form_submit.php', $('input, textarea', this).serialize());
			$.post(HOST + '/showpage.php?pageID=28', {name: $('#name').val(), email: $('#email').val(), tel: $('#tel').val(), message: $('#message').val()}, function(data){
				if (data.indexOf('Dziękujemy') < 0) {
					$this.removeClass('processing');
					alert($(data).text());
				}
				else
					$this.removeClass('processing').html(data);
			});
		}
		return false;
	});
});
