// JavaScript Document
$(document).ready(function() {
	$('.thumb').click(function() { changeImage($(this)); });		
	$('#image1').fadeIn(500);
});

function changeImage($thumb)
{
	$('.v-img').hide();
	$('.h-img').hide();
	
	var id = $thumb.attr('id');
	
	switch(id)
	{
		case 'thumb1':
		$('#image1').fadeIn(500);
		break;
		
		case 'thumb2':
		$('#image2').fadeIn(500);
		break;
		
		case 'thumb3':
		$('#image3').fadeIn(500);
		break;
		
		case 'thumb4':
		$('#image4').fadeIn(500);
		break;
		
		case 'thumb5':
		$('#image5').fadeIn(500);
		break;
		
		case 'thumb6':
		$('#image6').fadeIn(500);
		break;
		
		case 'thumb7':
		$('#image7').fadeIn(500);
		break;
		
		case 'thumb8':
		$('#image8').fadeIn(500);
		break;
	}
}