
//observe page load
Event.observe(window, 'load', function(event){

});


//look throug each #sm-video on home/archive pages to hide the paragraphs.
//this will display only the video at the top content output
if($$('.sm-video') != undefined){
	//for each elemement within		
	$$('.sm-video').each(function(c){
		i = 0;
		c.childElements().each(function(a) {					
			if(i > 0){
				a.hide();
			}
			i++;					
		});
	});	
}