	function showHide(copyRef,linkRef){
		
		contentRef = document.getElementById(copyRef);
		linkRef = document.getElementById(linkRef);
		contentHeight = $(contentRef).height();
		
		
		if (contentRef.style.display == 'none') {
			contentRef.style.display = '';
			//$(contentRef).amimate({alpha:100, height:200}, 1500);
			
			if(linkRef.innerHTML == 'more'){
				linkRef.innerHTML = 'less';
			}
		} else {
			contentRef.style.display = 'none';
			//$(contentRef).slideUp("fast");
			if(linkRef.innerHTML == 'less'){
				linkRef.innerHTML = 'more';
			}
		}
		
		ddequalcolumns.resetHeights();
		
	}
	
	
	function lavalampMenu(){
		$("#lavalamp").lavaLamp({
			fx: "backout",
			speed: 400,
			click: function(event, menuItem) {
				return true;
			}
		});
	};
	
	function changeColor(){
		$("#titleHldr .inner").animate({backgroundColor: "red"}, 100 );	
		//$("#topMenu li.back").animate({backgroundColor: "red"}, 100 );
		
		
	};
	
	
	
	
	
	$(function(){
		
		
		var pageText = $('#contentArea p, #contentArea ul, #contentArea h2, #contentArea h3, #contentArea .h4');
		var defalutFontSize = pageText.css('fontSize');
		
		$('#changeFont a').click(function(){
			
			var currFontSize = pageText.css('fontSize');
			var finalNum = parseFloat(currFontSize, 10);
			var stringEnding = currFontSize.slice(-2);
			if(this.id == 'large') {
				if(finalNum < 20){
					finalNum *= 1.2;
				}
			}
			else if (this.id == 'small'){
				if(finalNum > 10){
					finalNum /=1.2;
				}
			} else if(this.id == 'reset'){
				finalNum = 13;
			} 
			pageText.css('fontSize', finalNum + stringEnding);
			
			ddequalcolumns.resetHeights();
		});
		
	
		

	});
	

	
	  
	$(document).ready(function() {
		lavalampMenu();
		changeColor();
		resizeFont();
	});
