function setEqualHeight(columns) {
	var tallestcolumn = 0;
	columns.each(
		function() {
			currentHeight = $(this).height();
			if(currentHeight > tallestcolumn) {
				tallestcolumn = currentHeight;
			}
		}
	);
	columns.height(tallestcolumn);
}
$(document).ready(function(){ 
	setEqualHeight($(".resume_row > div"));

	$("#formBox #cont:gt(0)").hide();
	$("#formBox .opacity").click(function(){
    		$(this).next("#cont").slideToggle("slow");
	});
	
	//-- Эмуляция hover для IE --//
	$('#contentBox #mainContent DIV.art_list.resume').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
});