function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function() {
	equalHeight($(".column"));
});



$(document).ready(function() {
$("a#closeBut").click(function() {
  //Animate
  //$("div.content_image object").css({"display" : "block"});
  //Animate
});

$(".nyroModalClose").click(function() {
  //Animate
  $("body").css({"display" : "none"});
  //Animate
});

});




/*
* Nyromodal-Box
*/
$(document).ready(function() {
$("li.first a.nyro").click(function() {

//Animate
  //$("div.content_image object").css({"display" : "none"});
//Animate

  url = $(this).attr("href");
  $.nyroModalManual({
    type: "ajax",
    url: url+"?type=101",
    width: 500,
    height: 400
  });
  return false;
});

$("li.middle a.nyro").click(function() {

//Animate
  //$("div.content_image object").css({"display" : "none"});
//Animate

  url = $(this).attr("href");
  $.nyroModalManual({
    type: "ajax",
    url: url+"?type=101",
    width: 500,
    height: 400
  });
  return false;
});
});

