// popup window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// breadcrumb
$(document).ready(function() {
$('ul#bread li:last-child').addClass("noarrow");

if ($('ul#bread li:last-child').children().is("a") ) {
var lastBreadLink = $('#bread li:last-child a').html();
$('ul#bread li:last-child a').remove();
$('ul#bread li:last-child ').append("<span>" + lastBreadLink + "</span>");
}

});


// Student Organizations

$(document).ready(function() {

$('#studorg').click(function(){
    $('#studorgbox').slideToggle(400);
	/* Toggles the .down class for the button, which will swap the background image */
	$(this).toggleClass("down");
	$('#studorg').toggleClass("studorg_o");
	return false;
	
});	

});