$(document).ready(function(){
	// video launching
	$('li.video a').click(function(event){
		var videoconsole = $(this).attr('href');
		window.open(videoconsole,'video',"location=0,status=0,scrollbars=0,resizable=1,width=475,height=350");
		event.preventDefault();
	});
});