$(document).ready(function() {
	
	// Show popups when hovering images
	
	$('a.basic').cluetip({
		hoverClass: 'highlight',
		sticky: true,
		mouseOutClose: true,
		closePosition: 'bottom',
		closeText: '<img src="html/images/nok.gif" alt="close" width="16" height="16" />',
		link: false
 	});
 	
 	// Autocomplete, nonfunctional atm
	
	$("#ac_me").autocomplete("loader.php", {
		minChars:3,
		matchSubset:1,
		matchContains:1,
		cacheLength:10,
		selectOnly:1 
	});
	
	// Show more infos at photos.tpl
	
	$(".article .thebody").hide();
	$("#container .article ul").prepend("<li class='readbody'><a href='' title='Read more infos'>Some Infos</a></li>");
     
	$(".actions li.readbody a").click(function(event){
		$(this).parents("ul").prev(".thebody").toggle();
		// Stop the link click from doing its normal thing
		return false;
 	});
 	
});