// M E T H O D IT HOMEPAGE JS

//// jQuery
$(document).ready(function() {
	
	//territory rollovers
	$('ul#territories li strong').hover(
	function(){
		$('small', this.parentNode).show();
	},
	function(){
		$('small', this.parentNode).hide();
	}
	);
						   
});



