// JavaScript Document
$(document).ready(function(){
	$("div.tx-chgallery-pi1 a").click(function(event){
		href = $(this).attr("href");
		$.get(href, function(data){
			callbackSwitchPid(data);
		});
		event.preventDefault();
	});
});

function callbackSwitchPid(data){
	var index = data.indexOf('<div class="bigimg">');
	img = data.substr(index);
	index = img.indexOf('<img');
	img = img.substr(index);
	index = img.indexOf('>');
	img = img.substring(0,index + 1);
	$("div.bigimg").html(img);
}
