jQuery(document).ready(function($) {	
	
	/* Begin subNav <ul> height adjustment */
	
		/* Split <ul.subNavSplit> lists into columns using jquery.easyListSplitter plugin */
			$('.subNavSplit').easyListSplitter({ 
					colNumber: 2,
					direction: 'horizontal'
			});
		
		// Set height of corresponding columns to be equal
			var col1Height = $('.listContainer1 ul.listCol1').height();
			var col2Height = $('.listContainer1 ul.listCol2').height();
			var col3Height = $('.listContainer2 ul.listCol1').height();
			var col4Height = $('.listContainer2 ul.listCol2').height();
			
			if(col2Height < col1Height){	
				$('.listContainer1 ul.listCol2').height(col1Height);
			}
			if(col2Height > col1Height){	
				$('.listContainer1 ul.listCol1').height(col2Height);
			}
			if(col4Height < col3Height){	
				$('.listContainer2 ul.listCol2').height(col3Height);
			}
			if(col4Height > col3Height){	
				$('.listContainer2 ul.listCol1').height(col4Height);
			}
	
	/* End subNav <ul> height adjustment */
	
	$('#slidego').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 4000,
		// pause: true,
		speed: 1250,
		next:   '#slideright', 
    	prev:   '#slideleft'
	});
	
	var centerlineheight = $('#contentinnerwrap').height();
	$('#centerline').height(centerlineheight);
	
	if ($('#breadcrumb').length != 0) {
	$('#breadcrumb li a').not(':last').after('&nbsp;&nbsp;&gt;&nbsp;&nbsp;');
	};
	
	$('#slidego').fadeIn('slow');
	
	$('#news h2:last-child').css('border-bottom','none');
});
