// JavaScript Document

var param = {scale:'showall', allowFullScreen:'true'};
var so1 = swfobject.embedSWF("../gallery/vPlayer.swf", "video", "720", "430", "10.0.0", "../gallery/expressInstall.swf", {}, param, {id:'video_player'});

var so2 = swfobject.embedSWF("../gallery/gallery.swf", "image", "720", "500", "9.0.0", "../gallery/expressInstall.swf", {}, param, {id:'image_gallery'});

$(document).ready( function(){
	
	$('a', '#videos').click( function() {
		return false;								 
	});
	
	$('a', '.teaser').addClass('active');
	
	$('#videos').each( function() {
			
			$('a', this).click( function() {
				getVideo($(this).parent().attr('class'));
				
				$('a', '#videos').each( function() {
					$(this).removeClass('active');								 
				});
				
				$(this).addClass('active');
			});
			
	});
	
});
	
function getVideo(x) {
	
	document.getElementById('video_player').setVideo('../gallery/videos/'+x+'.flv');
	
}
