curthumb = 1;
function SwitchThumb(id) 
{
	document.getElementById("BigImage").src = document.getElementById("Thumb"+id).getAttribute("bigsrc");
	curthumb = id;
}

function SwitchThumbNew(id)
{
	$('#BigImage').fadeOut('fast',function(){
		document.getElementById("BigImage").src = document.getElementById("Thumb"+id).getAttribute("bigsrc");
		$('#BigImage').fadeIn('fast');
		curthumb = id;
	});
	
	
}