$(document).ready(function() {
    

  $("#drop").hide();
  $("#drop").fadeIn(900);
  $("#projectMainDescription").hide();
  $("#projectMainDescription").delay(900).show('drop', 900);
  
  $("#countOnline").hide();
  $("#countOnline").delay(900).show('drop', 900);

  count = $('.projectPreview').length
  countImg = $('#horizontalwrap img').length
  document.getElementById('count').innerHTML = count;
  document.getElementById('count').innerHTML = countImg;
  //alert(countImg);
  //console.log(count);
		
});//END Document Ready Function
