$(document).ready(function() {
	
	// add lightbox to all the a href's inside .eck_lbimg, used for plugin
    $('.eck_lbimg a').lightBox();
	
	// fixes to #agent_block, found at the bottom of the listings
	$('#agent_block').addClass('clearfix');
	$('#agent_block').children('.agent_info').addClass('grid_6');
	$('#agent_block').children('.agent_info:first-child').addClass('alpha');
	$('#agent_block').children('.agent_info:last-child').addClass('omega');
	
	
	// fixes to the listings pages
	$('ul#listings li img').removeAttr('align');
	
	var check_empty = new Array("#content p:empty","#content h1:empty","#content h2:empty","#content h3:empty","#content h4:empty");
	
	$.each(check_empty, function(k,v) { $(v).each(function() {
  		$(this).remove();
		});
	});
	
	// agent year of service block
	$('.service_years').wrapInner('<div class="years_container"><div class="year_number"></div></div>');
	
	
	
	
	
}); /* end document ready */
