jQuery(document).ready(function($) {
	// Image "popups"
	$('a.imgTease').fancybox();
	
	// Show extended info
	$('#content a.more').click(function (){		
		var idx = $('#content a.more').index(this);
		
		$('#content div.moreInfo:eq(' + idx + ')').toggle();
		$('#content a.more:eq(' + idx + ')').hide();
		
		return false;
	},
	function () {
	});
});
