$(document).ready( function(){
	$('.fade').innerfade({ 
		speed: 'slow',
		timeout: 4000, 
		type: 'sequence',
		containerwidth : '220px',
		containerHeight : 'auto'
	});
	
	$('.fade_quote').innerfade({ 
		speed: 'slow',
		timeout: 8000, 
		type: 'random',
		containerwidth : '220px',
		containerHeight : 'auto'
	});

	$('.myclass').vTicker({
	   speed: 400,
	   pause: 3000,
	   showItems: 3,
	   animation: 'fade',
	   mousePause: true
	});	
	
	$(".newsticker-jcarousellite").jCarouselLite({  
         vertical: true,  
         visible: 1,  
         auto: 8000,  
         speed:1000,
		 height: '150px'
    });  
	
	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
});	

