$(document).ready(function(){
	$(function() {
		$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
		});
	});
	$("p:last-child").css('margin-bottom', '0');
	$("#gallery a").hover( function() {
		$("#image").css('background','url('+$(this).find("img").attr("src").replace('/thumbs','')+') no-repeat center center');
	});
});