/*******************************************************************************
=== remove gutter from the homepage ============================================
	* Makes the homepage billboard animate.
*******************************************************************************/
var $j = jQuery.noConflict();

$j(document).ready(function() {
	jQuery.each(jQuery.browser, function(i) {
		  if(!$j.browser.msie){
	     equalHeight($j('#s-box span'));
	     }
	     return false;
	});
		
	function equalHeight(group) {
	    tallest = 0;
	    group.each(function() {
	        thisHeight = $j(this).height();
	        if(thisHeight > tallest) {
	            tallest = thisHeight;
	        }
	    });
	    
	    leftnavht = $j('#cont-l').height();
	    contentht = $j('#content').height();
	    
	    if(leftnavht > contentht) {
	    	tallest = (leftnavht - contentht) + tallest;
	    }
	    else {
	    	tallest = (contentht - leftnavht) + tallest;
	    }
	    group.height(tallest);
	}
});