  $(document).ready(function(){
    $(".item :empty").text("empty").css('background', 'rgb(255,220,200)');
  });
  
$(function(){
	$('a.windowNew').click(function(){
		window.open(this.href,'Loyal Army','height=670,width=550,scrollbars=yes,titlebar=true');
		return false;
	});
});