$(document).ready(function(){
	
	$('a.prototype').click(function(e){
		e.preventDefault()
		if($('body').hasClass('prototype')){
			$(this).text("show prototype")
			$('body').removeClass('prototype')
		}
		else{
			$(this).text("hide prototype")
			$('body').addClass('prototype')
		}
	})
	
})