jQuery(function($){

	$('div.actors ul li:odd').addClass('odd'); /* Roel 12/07/2008 (19:01) */
	$('div#header a:last').addClass('last'); /* Roel 12/07/2008 (19:02) */

	$('.loadYoutube').bind('click', function() 
	{
		// get url
		var url = $(this).attr('rel');
		
		// get id
		var id = $(this).attr('href').replace('#movie-', '');
		
		$('#movie-' + id).hide();
		$('#player-' + id).show();
		
		// build html
		var html = 	'<object width="425" height="344">';
		html += 	'<param name="movie" value="'+ url +'&autoplay=1"></param>';
		html += 	'<embed src="'+ url +'&autoplay=1" type="application/x-shockwave-flash" width="425" height="344"></embed>';
		html += 	'</object>';
		
		$('#yt-' + id).html(html);
	});

	$('.showSynopsis').bind('click', function() 
	{
		// get id
		var id = $(this).attr('href').replace('#movie-', '');
		
		$('#movie-' + id).show();
		$('#player-' + id).hide();
		$('#yt-' + id).html('');
	});
});