$(function () {
	$(this).extlink(); //all external/document links will open in a new window
	scrollProductions();
});

function scrollProductions() {
	if ($(".productions li").size() > 2) {
		$(".productions").jCarouselLite({
			vertical: true,
			visible: 2,
			auto: 6000,
			speed: 1000
		});
	}
}

$(window).load(function () {
	if ($("html").hasClass("ie7") || $("html").hasClass("ie8")) {
		var theWindow = $(window),
		$bg = $("#bg"),
		aspectRatio = $bg.width() / $bg.height();

		function resizeBg() {

			if ((theWindow.width() / theWindow.height()) < aspectRatio) {
				$bg.removeClass().addClass('bgheight');
			} else {
				$bg.removeClass().addClass('bgwidth');
			}

		}

		theWindow.resize(function () {
			resizeBg();
		}).trigger("resize");
	}
});
