function runSlideShow(){
	
									var imgs = [];
					
														imgs.push({
											file: 'l_02.jpg',
																	title: '',
											desc: '',
											url: '#'
										  					});
														imgs.push({
											file: 'l_03.jpg',
																	title: '',
											desc: '',
											url: '#'
										  					});
														imgs.push({
											file: 'l_04.jpg',
																	title: '',
											desc: '',
											url: '#'
										  					});
														imgs.push({
											file: 'l_05.jpg',
																	title: '',
											desc: '',
											url: '#'
										  					});
											imgs.push({
											file: 'l_06.jpg',
																	title: '',
											desc: '',
											url: '#'
										  					});
											imgs.push({
											file: 'l_07.jpg',
																	title: '',
											desc: '',
											url: '#'
										  					});
											imgs.push({
											file: 'l_08.jpg',
																	title: '',
											desc: '',
											url: '#'
										  					});								
											
														
													
									var myshow = new Slideshow('slideshow', { 
										type: 'fade',
										showTitleCaption: 0,
										captionHeight: 45,
										width: 296, 
										height: 183, 
										pan: 50,
										zoom: 50,
										loadingDiv: 0,
										resize: true,
										duration: [2000, 4000],
										transition: Fx.Transitions.Expo.easeOut,
										images: imgs, 
										path: 'video/'
									});
									
									myshow.caps.h2.setStyles({
										color: '#fff',
										fontSize: '13px'
									});
									myshow.caps.p.setStyles({
										color: '#ccc',
										fontSize: '11px'
									});
							
}

function showBlock(id) { 
if (document.getElementById(id).style.display == "none")
   {document.getElementById(id).style.display = "block"}
else 
   {document.getElementById(id).style.display = "none"}
}

							
							


