$(function() {
	// Fade-effekt for testemonials.
	$('ul.testemonial-list').cycle({
		fx:      'fade',
		speed:   1500,
		timeout: 7000,
		pause:   1
	});
	
	// Popup-vindu for film-visning.
	$("ul.films-list li a").click(function() {
		var wnd = window.open(
			$(this).attr("href"),
			"filmvindu",
			"location=0, statusbar=0, scrollbar=0, width=520, height=300");
		wnd.moveTo(100, 100);
		wnd.focus();
		return false;
	});
});
