/*
File: tripwire.js
Description: Contains several functions used on the site (ie. callouts, menus, etc.)
- expand and collapse for the internationl site
- controls the superfish drop down menus
- slideshow script for quick links, featured resources, etc.
- handles tab modules
*/

$(function(){

	// scroll the page to display the international section AND control "plus" and "minus" sign.
	$('#util-international').toggle(function() {
		$("#util-regions").remove().prependTo("#placeholder-regions").slideToggle('swing');
		$("#expandSign").html('[&minus;]');
	}, function() {
		$("#util-regions").slideToggle('swing');
		$("#expandSign").html('[+]');
	});
});
