document.observe('dom:loaded', function(){
	if ($('select_gallery')) {
		$('select_gallery').observe('change', function(){
			if ($F('select_gallery') * 1 == 0)  {
				window.location = wwwbase + 'videos/';
			} else {
				window.location = wwwbase + 'videos/gallery/' + $F('select_gallery');
			}
		});
	}	
	if ($('select_album')) {
		$('select_album').observe('change', function(){
			if ($F('select_album') * 1 == 0)  {
				window.location = wwwbase + 'videos/gallery/' + $F('select_gallery');
			} else {
				window.location = wwwbase + 'videos/album/' + $F('select_album');
			}
		});
	}
	
	if ($('horizontal_carousel')) {
		var car = new UI.Carousel("horizontal_carousel", {container: ".carousel_container", previousButton: ".prev_video", nextButton: ".next_video"});
        car.scrollTo(active_image-1);
	}
    if ($('horizontal_carousel2')) {
		var car2 = new UI.Carousel("horizontal_carousel2", {container: ".carousel_container", previousButton: ".prev_video", nextButton: ".next_video"});
	}
	if ($$('.this_link input').length) {
		$$('.this_link input').first().observe('focus', function(ev){ev.target.select()});
	}
});