$().ready(function() {
	
	$(".Carousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        speed: 800,
		circular:false
    });
    
	$(".Carousel img").click(function() {
        $("#LargeImage img").attr("src", $(this).attr("alt"));
		$("#LargeImage a").attr("href",$(this).attr("title"));
		var sText = $(this).attr("id") + "-text";
		document.getElementById('text_wrap').innerHTML = document.getElementById(sText).innerHTML;
    }).filter(":first").click();
	
	$("a[rel='modal']").colorbox();
});
