$(document).ready(function() {	
	$('.contentRight, .contentLeft').css('height', function(){
		var tamanho = $("#container").height();
		var novoTamanho = tamanho - 86;

		if ($('body').hasClass('page-template-pagemusik-php')){
			novaAltura = novoTamanho + 230;
			return novaAltura;
	 
  		} else{
  			return novoTamanho;
  		}
		
	});
	
	$(window).resize(function() {
	 	 $('.contentRight, .contentLeft').css('height', function(){
			var tamanho = $("#container").height();
			var novoTamanho = tamanho - 86;
			return novoTamanho;
		});
	});

	
		
		
		
		
});
