var $jQ = jQuery.noConflict();

// http://jquery.com/
$jQ(document).ready(function(){
    // http://fancybox.net/   

	$jQ("a.fancybox").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'transitionIn'	:	"elastic",
		'transitionOut'	:	"elastic",		
	});
	
	// http://flowplayer.org/tools/index.html
	$jQ("#gallery_foto").scrollable({circular: true}).autoscroll({ autoplay: true, interval: 5500 });
	// tu bylo przesuniecie div clone -37px
	$jQ("#gallery_foto .items").css("left", "0px");
	//animacja naglowkow packages
	$jQ("div.packages_title").mouseenter(function () {
			$jQ(this).animate({ 
				'padding-left' : 44,
				'padding-top' : 10  }, 
				"slow");
			}).mouseleave(function () {
				$jQ(this).animate({ 
				'padding-top' : 0,
				'padding-left' : 44,
			}, "slow");
		});
	//end of mouseleave
	
	$jQ(".scrollable").scrollable();
	
});
