(function($) {
	$.fn.put_list_into_2_cols = function() {
		$(this).addClass('col_1');
		this.each(function() {
			var	col_1 = this,
				col_2 = $('<ul class="col_2"></ul>')[0];
			
			$(col_2).insertAfter(this);
			$(this).children().appendTo(col_2);
			
			$(col_2).children().each(function() {
				if($(col_1).height() < $(col_2).height())
					$(this).appendTo(col_1);
			});
		});
	}
})(jQuery);

$(document).ready(function(){	
	Cufon.replace(['#header .tab ul li strong','#menu ul li a ','#bottom_menu ul li a','#left_container .site_map h2'], {fontFamily: 'Myriad Pro', hover: true});
	Cufon.replace(['#left_container h2','#left_container h3'], {fontFamily: 'Myriad Pro Bold', hover: true});
	Cufon.replace(['#header h1','#footer h2'], {fontFamily: 'Helvetica Neue LT Std', hover: true});
	
	$('#slideshow').before('<div id="slideshowNav">').cycle({
		timeout: 3000,
		pager: '#slideshowNav'
	});
	
	$('.bottom_btn li .btn_bottom').match_heights_for_sub_group(4);
	$('.bottom_btn li .btn_bottom strong').pad_to_vertical_center();
	
	/*
	$('.site_map > ul').addClass('2_col_list');
	var home_holder = $('<ul class="home_holder"></ul>')[0];
	$(home_holder).insertBefore($('.site_map .2_col_list'));
	$($('.site_map .2_col_list').children()[0]).appendTo(home_holder);
	$('.site_map .2_col_list').put_list_into_2_cols();
	*/
	
	$('#cert_-_plant .container').match_heights();
	
	$(Math.random() > 0.5 ? '#plant' : '#cert').hide();
	$('#switch_to_plant_link').click(function() {
		$('#cert').hide();
		$('#plant').show();
		return false;
	});
	$('#switch_to_cert_link').click(function() {
		$('#plant').hide();
		$('#cert').show();
		return false;
	});
	
	$('<br class="spacer" />').insertAfter($('body.category-12 #left_container ul'));
	$('body.category-12 #left_container ul').put_list_into_2_cols();
	
});
