$(document).ready(function(){
	$('#trans').innerfade({
		speed: 1500,
		timeout: 10000,
		type: 'sequence',
		containerheight: '200px'
	});	
	
});
$(document).ready(function(){
	$('#videoPlayer li').hide();	
	$('#videoPlayer li:first').show();
	
	$('#videoList li a').click(function(){
		$('#videoPlayer li').hide();	
		$('#videoPlayer li.'+$(this).attr('rel')).show();
		return false;
	});
});
