$(document).ready(function (){
	//Init Fancybox
	$("a.fancybox").fancybox();
	
	$('.thumbnail').click(function() {
		image = $(this).attr('href');
		image = image.replace('#','');
		$('.main-image').each(function() {
			if ($(this).attr('id') == image) {
				$(this).show();
			} else {
				$(this).hide();
			}
		});
		return false;
	});
});