$(function()
{
	// Facybox
	$('a[rel*=facybox]').facybox();
	
	// Video keeps playing in IE unless we delete the content
	$(document).bind('close.facybox', function() 
	{
		$('#facybox .content').empty();
	});
	
	// Cycle
	$('#slideshow .images').cycle({
		next: '#next',
		prev: '#prev'
	})
})
