$(document).ready(function(){
	$("a").focus(function(){
		$(this).blur();
	});
	
	$("img").pngfix();
	
	$("ul.thumbs li a").click(showBig);
});

function showBig() {
	var href = $(this).attr('href');
	var $bigImg = $("div.body p img:first");
	$bigImg.css({
		margin : '251px auto 255px',
		display: 'block'
	})
	.attr({
		src : 'images/loading.gif',
		width: 54,
		height: 55
	});
	$('<img />')
	.attr({
		src		: href,
		width	: 920,
		height	: 523
	})
	.load(function(){
		$('div.body p:has(img):first').html( $(this) );
		// Your other custom code
	});
//	$bigImg.attr('src', href);
	return false;
}
