// JavaScript Kot&copy;
$(document).ready(function() {

	$(".fancy").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titleShow' 		: 'false'
	});

	if($(".ifr")){
		$(".ifr").fancybox({
			'width'				: '90%',
			'height'			: '90%',
			'autoScale'			: true,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
	}//if
	

	// initialize tooltip
	$("#dyna img[title]").tooltip({
	
	   // tweak the position
	   offset: [10, 2],
	
	   // use the "slide" effect
	   effect: 'slide'
	
	// add dynamic plugin with optional configuration for bottom edge
	}).dynamic({ bottom: { direction: 'down', bounce: true } });
});

