// BradMcGonigle v.0.3 Cascading Style Sheet
// All Right Reserved
// ------------------

// custom.js
	// Custom Javascript for running jQuery Animations
	
// ------------------
// Created 7.7.2008
// Modified 7.7.2008 


// Show More Positions
	$(document).ready(function(){

	$(".show-more").click(function(){
		$(".hide").slideToggle("slow");
		$(this).text($(this).text() == '+ view additional positions' ? '- collapse additional positions' : '+ view additional positions'); return false;
	});	 
});