$(document).ready(function(){
									
	// If right column blank (We determine this if it only has one child element (The hidden field for activeStyleId))
	// Then add the 2col stylesheet if we are on a 3col template (styleId 3 or 18)
	// This will then override the 3col or 3colh stylesheets
	if ($("div#secondarycontent > *").size() == 1 && (activeStyleId == 3 || activeStyleId == 18))
	{
		$("head").append('<link rel="stylesheet" type="text/css" href="/style/2col.css" />');
	}
});
