$(document).ready(function() {

	$('#hero_thumbs li').click(function() {
		$('#hero_slides li').hide();
		$('#hero_thumbs li img').each(function() {
			var num = $(this).parent().attr('id').split('_')[1];
			$(this).attr('src', 'images/slides/' + num + '_thumb_off.png');
		});

		var num = $(this).attr('id').split('_')[1];
		
		$('#thumb_' + num + ' img').attr('src', 'images/slides/' + num + '_thumb.png');
		$('#slide_' + num).show();
	});

});
