$(document).ready(function(){
	var hasSub, hasSib;
	if ($("#subcats").html() != null) {hasSub = true;}
	if ($("#siblings").html() != null) {hasSib = true;}
	
	if (hasSub && hasSib) {
		$("#content_scroll").css("height", "366px")
	}
	if (!hasSub && !hasSib) {
		$("#content_scroll").css("height", "414px")
	}
});

function insertStyleTag(href) {
	$("head").append('<link href="'+href+'" rel="stylesheet" type="text/css" />');
}