/**
 * Created by viewstudio.
 * User: piotro
 * Date: 28.03.11
 * Time: 23:19
 * To change this template use File | Settings | File Templates.
 */
		$(document).ready(function() {
			$("a[rel=example_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Zdjęcie ' + (currentIndex + 1) + ' z ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			});
			
$(document).ready(function() {

    /*
    * SLIDESHOW
    * */
    $('.slideshow').cycle({
		fx: 'fade',
		timeout: 20000
	});

    /*
    * navMain
    * */
    		$('#navMain > li').mouseover( function(){
			var index = $("#navMain > li").index(this);
			$('#navMain > li > ul').eq(index).toggle();
		});
		$('#navMain >li').mouseout( function(){
			var index = $("#navMain > li").index(this);
			$('#navMain > li > ul').eq(index).toggle();
		});




   /*
    * Gallery
    **/

});




