function homeSlider(carousel)
{
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

$(function(){
	$(".navigation ul.menu li:first-child").addClass("home");
	$(".navigation ul.menu li.active:first-child a").addClass("homeactive");
});
