$(document).ready(function(){

// set up show/hide
$('#jobSearch .toggle').show();

// choose text for the show/hide link
var showText="open";
var hideText="close";


// change the text onclick
$('#jobSearch .toggle').click(function() {
	if ($(this).text()==showText) {
		$(this).text(hideText);
	} else {
	$(this).text(showText);
	}

// toggle visability onclick
$(this).parent().next('#jobSearch .location').slideToggle('slow');
return false;
});


});

