jQuery.fn.equalizeCols = function() {

       jQuery(this).filter(function() {return jQuery(this).find(".auto_fill").length == 0;}).each(function() {
       jQuery(this).append(jQuery("<div class='auto_fill'>&nbsp;</div>").height(0));
     }).css("height", "auto");

     var max_height= 0;

    jQuery(this).each(function() {
    var self= jQuery(this);
    var height= self.height() - self.find(".auto_fill").height();
    max_height=height > max_height ? height : max_height;
    });
    jQuery(this).each(function() {
         var self= jQuery(this);
         var height= self.height() - self.find(".auto_fill").height();
         self.find(".auto_fill").height(max_height - height);
     });
 }
function view(){
	var thesub;
	thesub = document.getElementById('view');
	if(thesub){	
		thesub.style.display = 'block';
	}
}
function hide(){
	var thesub;
	thesub = document.getElementById('view');
	if(thesub){	
		thesub.style.display = 'none';
	}
}
function viewTitle(){
	var thesub;
	thesub = document.getElementById('title');
	if(thesub){	
		thesub.style.display = 'block';
	}
	var thew = document.getElementById('picture');
	if(thew){	
		thew.setAttribute("class", "transparentblock");
		document.getElementById('big').style.opacity = "2";
		document.getElementById('big').style.filter = "alpha(opacity=20)";

	}
}

function hideTitle(){
	var thesub;
	thesub = document.getElementById('title');
	if(thesub){	
		thesub.style.display = 'none';
	}
	var thew = document.getElementById('picture');
	if(thew){	
		thew.setAttribute("class", " ");
		document.getElementById('big').style.opacity = "1";
		document.getElementById('big').style.filter = "alpha(opacity=100)";
	}
}
function viewD(){
	var thesub;
	thesub = document.getElementById('description');
	if(thesub){	
		thesub.style.display = 'block';
	}
	var thew = document.getElementById('picture');
	if(thew){	
		thew.setAttribute("class", "transparentblock");
		document.getElementById('big').style.opacity = "2";
		document.getElementById('big').style.filter = "alpha(opacity=20)";
	}
}
function hideD(){
	var thesub;
	thesub = document.getElementById('description');
	if(thesub){	
		thesub.style.display = 'none';
	}
	var thew = document.getElementById('picture');
	if(thew){	
		thew.setAttribute("class", " ");
		document.getElementById('big').style.opacity = "1";
		document.getElementById('big').style.filter = "alpha(opacity=100)";
	}
}