$(document).ready(function() {

	var sideH = $("#sidebar").innerHeight();
	var leftContentH = $("#content .primary-content").innerHeight();
	var rightContentH = $("#content .secondary-content").innerHeight(); 
	var contentH = $("#content").height();
	
	var checkBody = $("body").attr("class");
	
	if(checkBody != "home"){
		var heightForSecondNav = leftContentH - sideH;
		if(contentH <= 680){
			$('#sidebar .secondnav').height(heightForSecondNav + $("#sidebar .secondnav").innerHeight() - 22);
		}
	}
	
	
	$("#content .primary-content .colwide-bottom").each(function(){
		
		if(($(this).height()) < 566){
			$(this).css({'background':'url(_ui/images/bg-col_w_bottom_alt.png) no-repeat center bottom'});
			$(this).parent().css({'background':'url(_ui/images/bg-col_w_top_alt.png) no-repeat center top'});
			$(this).parent().parent().css({'background':'url(_ui/images/bg-col_w_alt.png) repeat-y center top'});
		}
	})
});