
function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

/*$(document).ready(function() {
equalHeight($(".content50"));
});*/

if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ 
	$('.topLink').corner("3px cc:#c30435");
	$('.importantLink').corner("3px cc:#ffffff");
	
	/*$('blockquote').corner("3px cc:#ffffff");
	$('.blockquote').corner("3px cc:#ffffff");
	$('h2.important').corner("3px cc:#ffffff");
	
	$('.highlightLink').corner("3px cc:#ffffff");*/
}

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  $('#slickbox').hide();
 // shows the slickbox on clicking the noted link
  $('#loginLink').click(function() {
 $('#slickbox').show('slow');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $('#closeBox').click(function() {
 $('#slickbox').hide('fast');
 return false;
  });
});

