jQuery.noConflict();
         

jQuery(document).ready(function() {
/* ------------
Cycle Plugin  
------------ */	
	/* Text mit Bild */
	jQuery('.imagebox').cycle({ 
		fx		: 'fade',
		speed	: 500,
		timeout	: 6000, 
		delay	:  -2000 
	}); 
	
	/* Startseite */	
	jQuery('#startcycle').cycle({ 
		fx		: 'growX',
		speed	: 800,
		timeout	: 4000
	}); 	
	
/* ------------
FancyBox Plugin  
------------ */	
	jQuery(".clickenlarge").fancybox({
		'overlayShow'	: false,
		'zoomSpeedIn'	: 600,
		'zoomSpeedOut'	: 500,
		'easingIn'		: 'easeOutBack',
		'easingOut'		: 'easeInBack',
		'padding'		: 2,
		'cyclic'		: 'true',

	});
	
	jQuery(".gallery").attr('rel','gallery').fancybox({		
	'padding'		: 6,
	'autoDimensions': true,
	'overlayShow'	: false,
	'scrolling'		: 'no',
	'titlePosition'	: 'over',
	'cyclic'		: 'true'

	
	});	
}); 
	

