/* kreuz:unter javascript library */

$(function() {
	$('#location-subnav-option-rip .html-replace').replaceWith('<a href="#show-closed-locations" id="show-closed-locations">RIP</a>');
	/*$('#location-subnav-option-rip .html-replace').replaceWith('<span><input type="checkbox" name="show_closed_locations" id="show-closed-locations" value="true" checked="checked" /> <label for="show-closed-locations">RIP</label></span>');
	$('#location-subnav-option-rip span').addClass('tabnavlink');*/


	if(document.getElementById('show-closed-locations')) {
		$('#show-closed-locations').toggle(
			function () {
				$('#show-closed-locations').removeClass('selected');
				$('.location-entry-state-closed').removeClass('hideRow');
			}, function () {
				$('#show-closed-locations').addClass('selected');
				$('.location-entry-state-closed').addClass('hideRow');
			}
		);
	}
});



