		$(document).ready(function() {
			/*
			*   div megjelenítése
			*/

			$("a.kepfeltoltes_link").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'none',
			});
			
			/*
			*   div megjelenítése
			*/

			$("a.arak_link").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'none',
			});

			/*
			*   terkepek  iFrame
			*/

			$("a.terkep").fancybox({
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'type'				: 'iframe'
			});
						
			/*
			*   képek - csoporban
			*/			

			$("a[rel=kepek-csoport]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

			/*
			*   képek - önálló
			*/

			$("a.fancykep").fancybox({
				'titlePosition' 	: 'over',
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});


		});