$(document).ready(function() {
	    
	 $(".orbit-caption h2.posttitle").each(function(index) {
	      var charLength = $(this).text().length;
	           //alert('h2 a ' + index + ' ' + charLength); 
	    
	      if (charLength >= 37) { 
	        $(this).css("font-size", "43px");
	        $(this).css("top", "-385px");
	      }
	      
	      });
	  $(".popular-posts span.wpp-post-title").each(function(index) {
	       var charLength = $(this).text().length;
	            //alert('h2 a ' + index + ' ' + charLength); 
	     
	       if (charLength >= 26) { 
	         $(this).css("margin-top", "4px");
	       }
	       
	       });
	   $("#comments-widget li a").each(function(index) {
	        var charLength = $(this).text().length;
	             //alert('h2 a ' + index + ' ' + charLength); 
	      
	        if (charLength >= 28) { 
	          $(this).css("padding-top", "0px");
	        }
	        
	        });
	                        
	      }); 

