// Slideshow ?
                var data = {
                  'banner.jpg': { }, 
                  'scroll2.jpg': { },
                  'scroll3.jpg': { }
                };
                var myShow = new Slideshow('show', data, {controller: false, height: 305, delay: 5000, hu: 'http://www.hostpos.com.au/themes/hostpos/images/'});
             
//  End of Slideshow ?
		
// infinitive scroller (0.0.1b)
if($$('#clients_list_wrapper').length > 0){
	var container = $$('#clients_list_wrapper')[0];

	var to_scroll = $$('#clients_list_wrapper ul')[0];
	var size = to_scroll.getDimensions().height.toString() + 'px'; 
	
	var pusher = new Element('div', {
	    'styles': {
		'display': 'block',
		'height': size
	    }
	});

	var myFx = new Fx.Scroll(container, { 
		wheelStops: false,
		duration: 99000,
		transition: Fx.Transitions.linear,
		onComplete: function(){
		
			var copy = to_scroll.clone();
			copy.inject(to_scroll, 'after');
			myFx.toBottom();
		}
	});

	myFx.toBottom();
}
/* homepage */
if($$('#testimonials_container').length > 0){
	new iCarousel("testimonials_content", {
		item: {
			klass: "testimonial",
			size: 135 
		},
		animation: {
			direction: "top",
			duration: 750,
			amount: 2,
			rotate: {
				type: "auto",
				interval: 8000
			}
		}
	});
}
		

//end of infinitive scroller (0.0.1b)

