jQuery(function($){
	$cont = $('#slidecont');
	$slides = $('div.slide', $cont);
	$thumbs = $('#thumbs li a');
	var pos, img;
	
	$thumbs.click(function(e){
		e.preventDefault();
		$thm = $(this);
		img = $thm.attr('rel');
		pos = $('#'+img).position().top;
		
		$cont.css({'top':'-'+pos+'px'});
	});
});
