$(function(){
	$('.input-holder').bind('click',function(){
		$(this).find('.wpcf7-form-control-wrap').next().hide()										 
											 
	});	
	
	  if (window.PIE) {
        $('#content,#sidebar').each(function() {
            PIE.attach(this);
        });
    }
});

window.onload = function() {  
  var sidebar = $('#sidebar'), content = $('#content'),hts={};
  
  hts.s = sidebar.height();
  hts.c = content.height();
  
  if(hts.c > hts.s){
	  sidebar.height(hts.c);
  } else {
	  content.height(hts.s);	  
  }
  
}; 
