/* Equal Height */
// http://www.highresolution.info/
// http://www.tomdeater.com/jquery/equalize_columns/
var eachCase = '#page'; // for each lines/paragraphs
var element = '.subcolumns'; // elements within lines/paragraphs from eachCase

function resizeContent() {
	if (jQuery(window).height() < 700) {
		  $("#c-right").css( { "background" : "transparent url('/img/lines-1.png') 0 -60px repeat-x" } );
		  $("#n-top").css( { "padding-top" : "8px" } );
		  $("#logo").css( { "margin" : "35px 70px 42px 0" } );
		  $("#button").css( { "margin-bottom" : "2.2em" } );
		  $("#page").css( { "line-height" : "1.5em" } );
		  $("span.longtext").css( { "display" : "none" } );
		  $("#testimonials").css( { "background" : "transparent no-repeat scroll 0 -16px" } ); // url('/img/testimonials-dummy.jpg') 
		  $("#c-l-430").css( { "margin-top" : "14px", "padding" : "0 9px 0.5em 9px" } );
		  $("#c-r-272").css( { "margin-top" : "14px", "padding" : "0 9px 0.5em 9px" } );
	  	  $("#testimonials").css( { "margin-top" : "-4px" } );
	  } else {
		  $("#c-right").css( { "background" : "transparent url('/img/lines-1.png') 0 0 repeat-x" } );
		  $("#n-top").css( { "padding-top" : "68px" } );
		  $("#logo").css( { "margin" : "95px 70px 42px 0" } );
	  	  $("#button").css( { "margin-bottom" : "7.4em" } );
		  $("#page").css( { "line-height" : "1.65em" } );
		  $("span.longtext").css( { "display" : "inline" } );
		  $("#testimonials").css( { "background" : "transparent no-repeat scroll 0 0" } ); // url('/img/testimonials-dummy.jpg')
		  $("#c-l-430").css( { "margin-top" : "30px", "padding" : "0 9px 1.42em 9px" } );
		  $("#c-r-272").css( { "margin-top" : "30px", "padding" : "0 9px 1.42em 9px" } );
		  $("#testimonials").css( { "margin-top" : "13px" } );
	  }
}

function equalColumns() {
$($(eachCase)).each(function() {
  var el = $(this).find(element);
    resizeContent();
    el.syncHeight();
    $(window).resize(function(){
	  resizeContent();
	  el.syncHeight();
 	});
  });
}

