/*********************** NAV HEADER */
$(function() {
	$("ul#menu span").css("opacity","0");
	// on mouse over
	$("ul#menu span").hover(function () {
		$(this).stop().animate({
			opacity: 1
		}, "fast");
	},
	// on mouse out
	function () {
		$(this).stop().animate({
			opacity: 0
		}, "slow");
	});
});

/*********************** SLIDER INDEX */
$(function() {
    $("#carouselCont").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		auto: 5000
    });
});
