$(document).ready(function () 
{	
	$('.carousel').jCarouselLite({
        btnNext: ".next-button",
        btnPrev: ".prev-button"
    });
	$(".carousel a").click(function() {
		var bigImage = $(this).attr("rel");
		$(".big-img img").attr("src", bigImage);
		return false;
	});
});
