$(document).ready(function() {

	$('#s1').cycle();

	$('hr').wrap('<div class="hr" />');

	/* Search Page */
//	$('.the_map').hide();

	$('#the_results li').each(function() {
		var SearchItem = this;
		$('.map a', this).click(function() {
			$(this).parents('li').toggleClass('open');
			$('.the_map', SearchItem).slideToggle();
			return false;
		});
		$('.hide_me', this).click(function() {
			$('.map a', SearchItem).trigger('click');
			return false;
		});
	});
});



	/* Search Page */

