jQuery(document).ready(function() {
	jQuery('a#find-hotels').click(function () {
    	jQuery(this).parent().nextAll('.WidgetWrapper').slideToggle('slow');
		return false;
    });
});