// JavaScript Document

$(document).ready(function () {
					
	$('div.thumb').click(function () {
		$('div#image img').hide();
		
		$('img#' + $(this).attr('id')).fadeIn();
	});
	
	$('a[href^=http://]').click(function () {
		window.open(this.href);
		return false;
	});

});