$(window).load(function() {
	$('#nivoslider-131').nivoSlider({
        effect:"boxRandom",
        slices:15,
        boxCols:8,
        boxRows:4,
        animSpeed:500,
        pauseTime:3000,
        startSlide:0,
        directionNav:true,
        directionNavHide:true,
        controlNav:true,
        controlNavThumbs:false,
        controlNavThumbsFromRel:true,
        keyboardNav:true,
        pauseOnHover:true,
        manualAdvance:false	
	});
});
$(document).ready(function() {
	$('#packshots').equalHeights();
	breite = $('#content').width();
	breite = Math.floor(breite/160);
	breite = breite*160;
	$('#packshots, #footer').width(breite);	
	$('html').removeClass('no-js');
	$('#packshots li a').hover(function() {
		$(this).children('img').before('<div class="play"></div>');
	},
	function() {
		$(this).children('.play').remove();
	});
	
});

