$(document).ready(function(){ 
	$(function(){
	   var count = 0;
	    $('.slideshow img:gt(0)').hide();
	    setInterval(function(){
	    if (count < 6) { count++;
			$('.slideshow :first-child').fadeOut(3000)
			 .next('img').fadeIn(3000)
			 .end().appendTo('.slideshow');
			}  
	    }, 
	    4000);
	});
	
	$("#videoimg").click(function(event) {
                    window.location.href = "about/company_overview_videos#v1";
                    event.preventDefault();		  
								  
		});

});
