// JavaScript Document

$('.imgpop').live('click', function() {
	src = $(this).attr('src');
	alt = $(this).attr('alt');
	//alert(src);
	loadImage(src);
});

$('#imgpop_load, #imgpop_close').live('click', function() {
	$('#imgpop_center').fadeOut('normal');
});

function loadImage(src)
{
	$('#imgpop_load, #imgpop_caption').empty();
	$('#imgpop_caption').append(alt);
	$('#imgpop_load').hide();
	$('#imgpop_load').load("load_image.php",{img:src},$('#imgpop_center,#imgpop_load').fadeIn('normal'));

}
