$(document).ready(function(){
//Full Caption Sliding (Hidden to Visible)
  $('.showInfo.infoFull').hover(function(){
      $(".myDescription", this).stop().animate({top:'197px'},{queue:false,duration:160});
   }, function() {
      $(".myDescription", this).stop().animate({top:'500px'},{queue:false,duration:160});
      });
    });
		
function HideEmptyAdLayer( objectId ) 
{
  var objLayer = document.getElementById( objectId );
  if( objLayer ) 
    {
	  if( objLayer.innerHTML.length < 500 )
			objLayer.style.display = "none";
    }
}