jQuery.noConflict();
jQuery(document).ready(function() {
/* ------------------
Caroussel Startseite
-------------------*/
//	jQuery("#ads").scrollable({size: 1}).circular(100).mousewheel(1000).navigator({
	jQuery("div#ads").scrollable({size: 1}).circular().navigator({

		// select #flowtabs to be used as navigator
		navi: "#ads",

		// select A tags inside the navigator to work as items (not direct children)
		naviItem: "a",

		// assign "current" class name for the active A tag inside navigator
		activeClass: 'current'

	});
	
	jQuery("img[rel]").overlay();
/* ------------------
Fancybox
-------------------*/
	jQuery(".fruehlingsmemory>.items>a").fancybox({
		type	: 'iframe',	
		width	:  	880,  	
		height	: 	500,
		padding	: 	5,
		titleShow : 'false'

	});
	jQuery("a#memory").fancybox({
		type	: 'iframe',	
		width	:  	880,  	
		height	: 	500,
		padding	: 	5,
		titleShow : 'false' 

	});
});
