var j = jQuery.noConflict();
// This is a fix for when items are positioned absolutely from an image that does not have a height.
// Removes item that is positioned absolute then adds it once image has loaded.


var img = "span.images img";
var text ="span.details";


j(document).ready(function() {	
	

	
	j(img).load(function(){
	 j(text).hide();
	 j(text).show();
	  //j(text).css({ top: -j(text).height()-2 });
	   
	});

	



});