function initCommercials(){
	$('.toggleContent').each(function(i){
		$(this).click(toggleContent);
		$(this).next('.togglerContent').css({display:'none'});
	});
	//.
}
function toggleContent(e){
	$(this).next('.togglerContent').toggle();
	return false;
}
$(document).ready(initCommercials);