j(document).ready(function () {
	var category = document.location.pathname.split('/')[1];
	if(category.length > 3)
	{
		j('.cms-menu ul li a[href="/'+category+'"]').parent().addClass('active');
	}
	
	var container = 0;
	
	setInterval(function () {
		if(container != j('#page').height())
		{
			container = j('#page').height();
			j('#widget').height(container);
		}
	}, 1000);
	
});
