var Proflex = {
	backgrounds: [
		'/media/images/home/1.jpg',
		'/media/images/home/2.jpg',
		'/media/images/home/3.jpg'
	],
	currentItem: 0,
	maxItems: 0,

	init: function() {
		this.initPanel();
		this.initGallery();
		this.initNews();
		this.initCarousel();
		this.bioToggler();
	},

	/**
	 * Panel
	 */
	initPanel: function() {
		$('.panel').jScrollPane({
			scrollbarWidth: 16,
			showArrows: true,
			arrowSize: 32
		});
	},

	/**
	 * Galerie zdjec
	 */
	initGallery: function() {
		$('a[rel="fancybox"]').fancybox();
	},
	
	bioToggler: function() {
		$('#jaroslaw-bio').hide();
		$('#jaroslaw-toggler').click(function(){
			$('#jaroslaw-bio').slideToggle();
			return false;
		});
	},

	/**
	 * Informacje prasowe
	 */
	initNews: function() {
		$('.entry h3 .title').click(function() {
			var $entry = $(this).parent().parent();

			if ($entry.hasClass('closed')) {
				$entry.removeClass('closed');
				$entry.addClass('opened');

				$(this).parent().find('.g').remove();

				Proflex.initPanel();
			}
		});

		$('.entry .collapse').click(function() {
			$(this).parent().parent().parent().addClass('closed').removeClass('opened');

			return false;
		});
	},

	/**
	 * Karuzela
	 */
	initCarousel: function() {
		if ($('body').hasClass('home')) {
			$('body').append('<img src="" width="100%" height="100%" alt="" class="background">');


			if (this.backgrounds.length > 0) {
				$('body img.background').attr('src', this.backgrounds[Math.floor(Math.random()*this.backgrounds.length)]);
			}
		}

		$('.home .slideshow').cycle({fx: 'fade', timeout: 7000});
		$('.page .slideshow').cycle({fx: 'fade', timeout: 2500});
	}
};

$().ready(function() {
	Proflex.init();
});

