// Document ready
$(document).ready(function()
{
	$('#watchmovie').html('<iframe class="iframe" src="watchmovie.php?movie=' + $('.videoBox ul.movies li:first').attr('rel') + '"></iframe>');
	$('.videoBox ul.movies li:first').addClass('selected');
	$('.videoBox ul.movies li').click(function()
	{
		$('.videoBox ul.movies li').removeClass('selected');
		$(this).addClass('selected');
		$('#watchmovie .iframe').hide().attr({src: 'watchmovie.php?movie=' + $(this).attr('rel') + ''}).fadeIn(1800);
	});
});
