// Welcome to your jquery.base file ... place awesome jquery stuff here to help spruce up / fix / whatever your site. A link to this file has already been placed in each masterpage

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

jQuery(function() {	
	jQuery(".skin_m01 h2, .skin_m02 h2").prepend("<span>&raquo;</span>");
	
	// add first and last classes to various elements
	jQuery(".subnavblock, .footlinksblock").each( function() {
		jQuery(this).children("li:last").addClass("last");
		jQuery(this).children("li:first").addClass("first");
	});
		
	equalHeight(jQuery("#main, #leftnav, #rm"));
	
	jQuery(".label_text_m01").corner("round top");
	jQuery(".skin_m02").corner("round bottom");
});