$(function () {
	thumbnails();
			
	$('#trailer #video').each(function() {	 
		$video = new SWFObject("http://www.instinctstudios.com/assets/swf/player.swf", 'video-player', 580, 327, '8', '#ffffff');
		$video.addParam('allowScriptAccess', 'always');
		$video.addParam('allowFullScreen', 'true');
		$video.addVariable('url', $(this).attr('rel'));
		$video.addVariable('title', $(this).attr('title'));
		$video.addVariable('study', $(this).attr('href'));
		$video.write('video');							
	});

	$('#list2').accordion({
		header: 'strong.title',
		selectedClass: 'open',
		event: 'click',
		autoheight: true
	});
});