window.log = function(){
  log.history = log.history || [];
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};

jQuery(document).ready(function($) {
	// jQuery code here
	$(window).load(
		function(){
			if($("#pageLeftInterior").length && $("#pageRightInterior").length) {
				var $L = $("#pageLeftInterior");
				var $R = $("#pageRightInterior");
				var ht = Math.max($L.height(), $R.height());
				$L.height(ht);
				$R.height(ht);
			}
		}
	);
	$("a.confirm").click(function() { return confirm("Are you sure?"); });
});

