$(function () {

	if(!ie6) {
		$("div.scrollable").scrollable({
			size: 5,
			speed: 200,
			items: ".thms"
			});
			
		$(".thms div img").click(function() {
			bkd = $(this).attr("alt");
			swapPoster(this,bkd);
			});	
		
		$('.thms div img:first').click();
		
		// Pre-load large images
		$('.thms div img').each(function() {
			img = "/roadcase/posters/lg/" + $(this).attr("alt") + ".png";
			$.ajax({ url: img, cache:true, dataType:"text" });						
			});
		}

	});
	
function swapPoster(sel,lg) {
	$('.thms div img').removeClass("on");
	$(sel).addClass("on");
	deets = $(sel).siblings('span').html();
	$('#details').html(deets);
	poster = "/roadcase/posters/lg/" +lg+ ".png";
	$('#poster').attr("src",poster);
	}	