$(window).load(function() {

//set heights of content and sidebar to height of content wrapper
		//this sets the smaller one to be the same height as the larger one
		var conwraph = $('div#content-wrapper').height();
		$('div#content-wrapper div#sidebar').height((conwraph) - 40);
		$('div#content-wrapper div#content').height((conwraph) - 70);
});
$(document).ready(function(){
        
		
		
		function makeUnselectable(elem) {
		  if (typeof(elem) == 'string')
			elem = document.getElementById(elem);
		  if (elem) {
			elem.onselectstart = function() { return false; };
			elem.style.MozUserSelect = "none";
			elem.style.KhtmlUserSelect = "none";
			elem.unselectable = "on";
		  }
		}
		
		
		$('#eternal_content').hide();
		$('div#obit_content p').click(function() {
			$('div#obit_content').hide();
			$('div#eternal_content').show();											   
											   });
		
		$('div#eternal_content p').click(function() {
			$('div#eternal_content').hide();
			$('div#obit_content').show();	  												  
												  });
		
});















