// JavaScript Document
// JavaScript Document
	window.addEvent('domready',function(){
		//SAMPLE 5 (mode: vertical, using "onWalk" )
		
		//var info5 = $('info5').set('opacity',0.7);
		var info5a = $('info5a').set('opacity',1.0);
		
		var sampleObjectItems =[
			{title:'Schedule Your Free Consultation and X-Ray', date:'4-7-2011', h1title:'Membership',h1link:'/free-orthodontic-consultation/'},
			{title:'Why Choose an Orthodontist?', date:'4-7-2011', h1title:'Golf Outings',h1link:'/why-see-a-specialist/'},
			{title:'Schedule Your Free Invisalign Evaluation', date:'4-7-2011', h1title:'Weddings',h1link:'/invisalign/'},
			{title:'When Should Your Child see an Orthodontist?', date:'4-7-2011', h1title:'Meetings',h1link:'/when-to-start/'}
		];
		
		
		var nS5 = new noobSlide({
			 mode: 'vertical',	
			box: $('box5'),
			size: 150,
			items: sampleObjectItems,
			addButtons: {
				previous: $('prev5'),
				play: $('play5'),
				stop: $('stop5'),
				next: $('next5')
			},
			interval: 5000,	
			autoPlay: true,
			onWalk: function(currentItem){
				//info5.empty();
				info5a.empty();
				new Element('p').set('html','<a style="font-weight: bold; font-size: 19px; line-height: 25px; text-align: center; color: #0089cd;" href="'+currentItem.h1link+'">'+currentItem.title+'</a>').inject(info5a);
				//new Element('h4').set('html','<a href="'+currentItem.link+'">link</a>'+currentItem.title).inject(info5);
				//new Element('p').set('html','<a style="color: #fff; font-family:Georgia, "Times New Roman", Times, serif;" href="'+currentItem.h1link+'">'+currentItem.title+'</a>').inject(info5);
			}
		});

});

