// JavaScript Document
$(document).ready(function(){
	//Switch Bild in the middle
	href = $("div.tx-chgallery-pi1 div.items div.align a:first").attr("href");
	$.get(href, function(data){callbackSwitchPid(data);});
	
	$("div.tx-chgallery-pi1 a").click(function(event){
		href = $(this).attr("href");
		//alert(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);
}
