$(document).ready(function(){
	$(".worktgallery li a").hover(
			function(){
				var id = this.id.substr(1);
				$("#li"+id+" div").show();
			},function(){
				var id = this.id.substr(1);
				$("#li"+id+" div").hide();
			}
	);
	/*
	$(".jCarouselLite").jCarouselLite({
        visible: 1,
        auto: 2500
	});
	*/
	$('.jCarouselLite').cycle({
		speed:  1000
	});
});