jQuery(function($){

	$('.gravatar').each(function() {
		var item = $(this);
		item.attr('src', item.attr('rel'));
	});

	$('.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('');
	});
});
