$(document).ready(function() {
  $("#menu>li:has(ul)").each(function() {
    $(this).find(">a").addClass("link-has-children");
  });
  $("#menu li:last-child").addClass("last");
  
	$("a.add-logo").click(function() {
    var dialog = $("<div />").addClass("jqmWindow").appendTo("body").hide().jqm();
    $(dialog).load($(this).attr("href"), function() {
		  $(dialog).jqmShow();  
    });
		return false;
	});
	
	var highestHeight = 0;
	$(".front-page-post-wrapper").each(function() {
	  var h = parseInt($(this).innerHeight());
	  if(h>highestHeight) {
	    highestHeight=h;
    }
  });
  $(".front-page-post-wrapper").css({'height':highestHeight+'px'});
  
});

