
// Default languages messages
var intro_open = 'Read more';
var intro_close = 'Close';


$(document).ready(function() {

	/* Provides the mouseover that displays the title for
 	 * the cineaste/animation-television and filmographies pages.
 	 */
	var orig_title = $('#hover_title').html();
	$('a.thumbnail').hover(function() {
		$('#hover_title').html( $(this).children().attr('alt') );
	}, function() {
		$('#hover_title').html(orig_title);
	});


	/* Hides and toggle the videos media.
	 */
	$('.media_video .media_display').hide();
	$('.media_video .media_description').click(function() {
		$(this).prev().toggle();
	}).css('cursor', 'pointer');


	/* Text collapse support for the homepage.
	 */
	var intro_toggle = '<div class="clearfix" style="margin-top:7px;"><a id="intro_toggle" class="next"></a></div>';
	$('body.home').find('#intro').css('overflow', 'hidden').after(intro_toggle);
	$('body.home').find('#intro_toggle').html(intro_open).toggle(function() {
		$('#info').addClass('wide');
		$(this).html(intro_close);
		$('#intro').css('overflow', 'auto');
	}, function() {
		document.getElementById('intro').scrollTop = 0;
		$('#info').removeClass('wide');
		$(this).html(intro_open);
		$('#intro').css('overflow', 'hidden');
	});

});

