jQuery(document).ready(function($){
	// Click a thumbnail to set it as the primary image
	$('.item .media .thumbs a').live('click', function(e){
		e.preventDefault();
		$('.item .media .primary img').attr('src', $(this).attr('href'));
	});
	// Preload thumbnails a half second after the page is ready
	if($('.item .media .thumbs img').is('*')){
		setTimeout(function(){
			$('body').append('<div id="thumbs_loader" class="ootw"></div>');
			$('.item .media .thumbs li').each(function(){
				$(this).find('img').attr('src', $(this).find('a').attr('title'));
				$(this).find('a').attr('title', '');
			});
			$('.item .media .thumbs li').each(function(){
				$('#thumbs_loader').append('<img src="' + $(this).find('a').attr('href') + '" alt="Image Loader" />');
			});
		}, 500);
	}
});

