$(document).ready(function(){
	$("#topMenuWrapper > a").children(".hover").hover().fadeTo("slow", 0);
	$("#topMenuWrapper > a").hover(
		function(){
			//on mouse over
			$(this).children(".hover").stop().fadeTo("fast", 1);
		},
		function(){
			//on mouse out
			$(this).children(".hover").stop().fadeTo("slow", 0);
		}
	);
	
	// Jquery Carousel Lite Init
	$(".JQCarouselLite").jCarouselLite({
		btnNext: ".JCLnext",
		btnPrev: ".JCLprev",
		visible: 4,
		circular: false,
		easing: "backout",
		speed: 500
	});
	
	// Lightbox init
	$('.JQCarouselLite a').lightBox();
});