var j=jQuery.noConflict();
j(document).ready(function() {
	j('.rules:not(:has(div.errors))').css({ display:'none' });
	var cContent = j('div.Content');
	var cForm = j('.rules');
	if (j.browser.msie && (j.browser.version.substr(0,1)=='6')) j('.main-content').css({height:parseInt(cContent.outerHeight(true)+cForm.outerHeight(true))+'px'});
	j('h3.slide').click(function(){
	  	j(this).next('.rules').slideToggle( 500, function (){
	  		if (j.browser.msie && (j.browser.version.substr(0,1)=='6')) j('.main-content').css({height:parseInt(cContent.outerHeight(true)+cForm.outerHeight(true))+'px'})
	  	});
	  	return false;
	});
});