$(document).ready(function() {
						   
	// controls image rollover highlight
	$(".thickbox img").hover(
		function() {
			$(this).css({opacity:"0.5"});
		},
		function() {
		$(this).css({opacity:"1.0"});
	});
	
	// controls set display
	$(".pages").jCarouselLite({
        btnNext: "#next",
        btnPrev: "#prev",
		circular: false,
		visible:1,
		speed: 700
    });
	
	// ^
	$("#prev").addClass("disabled");
	
});