$(document).ready(function()
{
	function setHeight()
	{
		var wheight = $(window).height();
		var fheight = $("#footer").height();
		var newheight = wheight - fheight - 60;
		$("#viewport").css("min-height", newheight);
	}

	$(window).resize(function() {
  		setHeight();
	});
	
	setHeight();

	$("#indexslider").carouFredSel({
		items: 1,
		circular: true,
		infinite: true,
		scroll: { fx: "crossfade" },
		auto : { pauseOnHover: true, pauseDuration: 8000 },
		pauseDuration: 0,
		pauseOnHover: "immediate",
		pagination	: "#indexslider_pag"
	});

        $("#refslider").carouFredSel({
                items: 1,
                circular: true,
                infinite: true,
                scroll: { fx: "crossfade" },
                auto : { pauseOnHover: true, pauseDuration: 5000 },
                pauseDuration: 0,
                pauseOnHover: "immediate",
                pagination      : "#refslider_pag"
        });
});

