﻿jQuery.noConflict();
jQuery(document).ready(function($){

/*CeeBox*/
/*$(".ceebox").ceebox();*/
$("body").ceebox({html:false,image:false,videoGallery:false, videoWidth:320, videoRatio:'4:3'});

/*div spacing*/
$('div.section:even').css('margin-right','20px');
	
	$('div.section:even').each(function(){
	
		var myH = $(this).height();
		var myN = $('div.section').index(this);
		
		if($('div.section:eq('+(myN+1)+')').height() !=undefined){
			var nextH = $('div.section:eq('+(myN+1)+')').height();
			$(this).css('height',Math.max(myH,nextH)+'px');
			$('div.section:eq('+(myN+1)+')').css('height',Math.max(myH,nextH)+'px');
		}
		
	});

});


